結果
問題 | No.3004 愛国心 |
ユーザー | hirakich1048576 |
提出日時 | 2016-12-08 15:52:02 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 178 bytes |
コンパイル時間 | 102 ms |
コンパイル使用メモリ | 19,456 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-06 09:39:00 |
合計ジャッジ時間 | 543 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
ソースコード
#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; }