結果

問題 No.3004 愛国心
ユーザー hirakich1048576hirakich1048576
提出日時 2016-12-08 15:52:02
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 178 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 23,392 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-19 02:29:18
合計ジャッジ時間 857 ms
ジャッジサーバーID
(参考情報)
judge9 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0