結果
問題 |
No.18 うーさー暗号
|
ユーザー |
|
提出日時 | 2016-09-30 16:31:58 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 293 bytes |
コンパイル時間 | 211 ms |
コンパイル使用メモリ | 23,040 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-21 11:15:47 |
合計ジャッジ時間 | 742 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 13 |
ソースコード
#include <stdio.h> #define LENGTH 1024 int main(void) { char s[LENGTH + 2], c; int i = 0, j; while ((c = getchar()) != EOF) { s[i] = c; i++; } for (j = 0; j < i; j++) { printf("%c", s[j] - ((j + 1) % 27)); } printf("\n"); return 0; }