Submission #9600

#TimeUsernameProblemLanguageResultExecution timeMemory
9600YesUjamVeni, vidi, vici (kriii2_V)C++98
0 / 4
0 ms1084 KiB
#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 timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...