Submission #9290

#TimeUsernameProblemLanguageResultExecution timeMemory
9290kkjjkkVeni, vidi, vici (kriii2_V)C++98
0 / 4
0 ms1576 KiB
#include <cstdio> #include <cstring> char h[100005], h3[100]; int h2[100005]; int main() { for(int i = 0; i < 26; i++) { h3[i] = 'a' + i; } int n, m, t = 0; scanf("%d", &n); while(1) { if(-1 == scanf("%s", h)) break; m = strlen(h); //printf("%s\n", h); for(int i = 0; i < m; i++) { if(i == m - 1) break; else { h2[t] = (h[i] + h[i + 1] - 'a' - 'a' - n + 26) % 26; t++; i++; } } h2[t] = 0; t++; } for(int i = 0; i < t - 1; i++) { if(h2[i] == 0) printf(" "); else printf("%c", h3[h2[i]]); } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...