# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
9176 | 2014-09-28T04:21:55 Z | yukariko | Veni, vidi, vici (kriii2_V) | C | 764 ms | 1088 KB |
#include <stdio.h> #include <string.h> int main(){ unsigned int i,n; char word[102]; scanf("%d ",&n); while(scanf("%s",word)){ for(i=0;i+1<strlen(word);i+=2){ printf("%c",(word[i]-'a'+word[i+1]-'a'-n)%26+'a'); } printf(" "); } return 0; }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 764 ms | 1088 KB | Program hung waiting for input |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Halted | 0 ms | 0 KB | - |