# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
9540 | 2014-09-28T07:07:02 Z | YesUjam | Veni, vidi, vici (kriii2_V) | C++ | 0 ms | 1084 KB |
#include <cstdio> int main() { int n; char y, z; scanf("%d", &n); getchar(); while(1) { scanf("%c", &y); if(y == '\n') break; if(y == ' ') { printf(" "); continue; } scanf("%c", &z); if(z == '\n') break; if(z == ' ') { printf(" "); continue; } char x = y-'a'+z-'a'-n; if(x >= 26) x %= 26; while(x<0) { x+=26; } printf("%c", x+'a'); } }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 1084 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Halted | 0 ms | 0 KB | - |