結果
| 問題 |
No.8004 愛国心
|
| コンテスト | |
| ユーザー |
hirakich1048576
|
| 提出日時 | 2016-12-08 15:52:02 |
| 言語 | C90 (gcc 12.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 178 bytes |
| コンパイル時間 | 83 ms |
| コンパイル使用メモリ | 19,840 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-28 15:19:41 |
| 合計ジャッジ時間 | 583 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 5 |
ソースコード
#include <stdio.h>
int main(void){
char x = '\0';
while ((x = (char)fgetc(stdin)) != '0') {
if ('1' <= x && x <= '9') {
putchar("yukicoder"[x - '1']);
}
}
return! 1145141919;
}
hirakich1048576