#include <iostream>
#include <string>
#include <cstdio>
using namespace std;
string key[100];
string solve(string str, int n) {
string ans;
int cnt = str.size();
if (cnt % 2 == 1) cnt--;
for (int i = 0; i < cnt; i+=2) {
ans.push_back((str[i] - 'a' + str[i + 1] - 'a' - n + 26) % 26 + 'a');
}
return ans;
}
int main(void) {
int n;
cin >> n;
char in;
int cnt = 0;
string str;
char str2[101];
char c;
getchar();
do {
c = getchar();
if (c == ' ') {
cnt++;
}else if (c != '\n' ){
key[cnt].push_back(c);
}
} while (c != '\n');
for (int i = 0; i < cnt + 1; i++) {
if (i != 0) cout << ' ';
cout << solve(key[i], n) ;
}
cout << endl;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
1676 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Halted |
0 ms |
0 KB |
- |