結果
問題 | No.18 うーさー暗号 |
ユーザー | tsukacchan |
提出日時 | 2016-03-23 12:01:42 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 230 bytes |
コンパイル時間 | 307 ms |
コンパイル使用メモリ | 19,968 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-01 19:27:38 |
合計ジャッジ時間 | 1,007 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
#include<stdio.h> int main(void){ int c; int i=1; int temp; while((c=getchar())!='\n') { temp=i; temp%=26; if((c-65)-temp>=0) printf("%c",c-temp); else printf("%c",90-(i-temp)); i++; } printf("\n"); return 0; }