#include <iostream>
#include <string>
#include <cstdio>
using namespace std;
int main()
{
int n;
cin >> n;
getchar();
bool first = true;
while(getchar() != '\n' ) {
string k;
cin >> k;
if (!first) {
cout << " ";
}
first = false;
for(int i = 0; i < k.size() ; i += 2) {
if (i == k.size() - 1)
break;
char ascii = (k[i] - 'a' + k[i + 1] - 'a' - n + 26) % 26 + 'a';
printf("%c", ascii);
}
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
1672 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Halted |
0 ms |
0 KB |
- |