#include <cstdio>
#include <cstring>
int main() {
int n, i=0;
char str[103];
scanf("%d", &n);
getchar();
while(scanf("%s", str)) {
int len = strlen(str);
for(int i=0; i<len; i++) {
char y = str[i];
i++;
if(i == len) break;
char z = str[i];
char x = y-'a'+z-'a'-n;
if(x >= 26) x %= 26;
while(x<0) {
x+=26;
}
printf("%c", x+'a');
}
printf(" ");
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
504 ms |
1088 KB |
Program hung waiting for input |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Halted |
0 ms |
0 KB |
- |