This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <cstdio>
#include <cstring>
int main() {
int n, i=0;
char temp[111111], *tok, str[103];
scanf("%d", &n);
getchar();
gets(temp);
tok = strtok(temp, " ");
while(tok != NULL) {
strcpy(str, tok);
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(" ");
tok = strtok(NULL, " ");
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |