Submission #9529

#TimeUsernameProblemLanguageResultExecution timeMemory
9529roott76Veni, vidi, vici (kriii2_V)C++98
0 / 4
0 ms1676 KiB
#include <iostream> #include <stdio.h> #include <string.h> using namespace std; int main() { int n; cin >> n; char t; t = getchar(); char in[100200]; fgets(in, sizeof(in), stdin); int len = strlen(in), bp = 0; in[len] = ' '; in[len+1] = NULL; len++; for(int i=0; i<len; i++) { if(in[i] != ' ') in[i] -= 'a'; } for(int i=0; i<len; i+=2) { if(in[i] == ' ') { i--; cout << " "; } else if(in[i+1] == ' ') cout << " "; else cout << char((in[i]+in[i+1]-n) % 26 + 'a'); } cout << endl; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...