TOJ 100

TOJ 100

題目

https://toj.tfcis.org/oj/pro/100/

Code

1
2
3
4
5
6
7
8
9
10
//By Koios1143
#include<iostream>
using namespace std;

int main() {
char n;
cin>>n;
cout<<(char)(n-1)<<'\n';
return 0;
}

複雜度分析

總時間複雜度為 $O(1)$