結果
問題 | No.304 鍵(1) |
ユーザー | nxteru |
提出日時 | 2017-04-03 21:27:05 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 165 bytes |
コンパイル時間 | 283 ms |
コンパイル使用メモリ | 27,136 KB |
実行使用メモリ | 25,604 KB |
平均クエリ数 | 167.50 |
最終ジャッジ日時 | 2024-07-16 12:47:46 |
合計ジャッジ時間 | 2,218 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
コンパイルメッセージ
main.c:1:1: warning: data definition has no type or storage class 1 | i;main(){ | ^ main.c:1:1: warning: type defaults to 'int' in declaration of 'i' [-Wimplicit-int] main.c:1:3: warning: return type defaults to 'int' [-Wimplicit-int] 1 | i;main(){ | ^~~~ main.c: In function 'main': main.c:4:9: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration] 4 | printf("%03d\n",i); | ^~~~~~ main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'printf' +++ |+#include <stdio.h> 1 | i;main(){ main.c:4:9: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch] 4 | printf("%03d\n",i); | ^~~~~~ main.c:4:9: note: include '<stdio.h>' or provide a declaration of 'printf' main.c:5:9: warning: implicit declaration of function 'fflush' [-Wimplicit-function-declaration] 5 | fflush(0); | ^~~~~~ main.c:6:9: warning: implicit declaration of function 'gets' [-Wimplicit-function-declaration] 6 | gets(s); | ^~~~ /usr/bin/ld: /tmp/ccSGfAQJ.o: in function `main': main.c:(.text.startup+0x50): 警告: the `gets' function is dangerous and should not be used.
ソースコード
i;main(){ char s[9]; for(i=0;i<1000;i++){ printf("%03d\n",i); fflush(0); gets(s); if(s[0]=='l') break; } }