Solutions/Fanta's Solution PKU 1298. The Hardest Probelm Ever. AC 지환태 2008. 12. 26. 22:21 #include <stdio.h> int main() { char string[101]; int i; while(1) { gets(string); if(strcmp("ENDOFINPUT",string)==0) return 0; if(strcmp("START",string)==0 || strcmp("END",string)==0) continue; for(i=0; string[i]!=0; i++) { if (string[i]<='E' && string[i]>='A') printf("%c",string[i]+21); else if (string[i]>'E' && string[i]<='Z') printf("%c",string[i]-5); else printf("%c",string[i]); } puts(""); } } Run ID User Problem Result Memory Time Language Code Length Submit Time 4456431 jht009 1298 Accepted 200K 0MS C 508B 2008-12-05 16:22:13스파킹형님 지켜주기는 끝 날 것같네요. 할 게 너무 없어요 ㅜㅜ