結果
問題 | No.304 鍵(1) |
ユーザー | testestest |
提出日時 | 2015-11-27 22:49:21 |
言語 | C90 (gcc 11.4.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 93 bytes |
コンパイル時間 | 147 ms |
コンパイル使用メモリ | 19,328 KB |
実行使用メモリ | 39,760 KB |
最終ジャッジ日時 | 2024-07-16 21:47:48 |
合計ジャッジ時間 | 6,585 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
コンパイルメッセージ
main.c:1:12: warning: data definition has no type or storage class 1 | char s[10];i; | ^ main.c:1:12: warning: type defaults to ‘int’ in declaration of ‘i’ [-Wimplicit-int] main.c:2:1: warning: return type defaults to ‘int’ [-Wimplicit-int] 2 | main(){for(;printf("%03d",i++),strcmp(gets(s),"unlocked");fflush(0));return 0;} | ^~~~ main.c: In function ‘main’: main.c:2:13: warning: implicit declaration of function ‘printf’ [-Wimplicit-function-declaration] 2 | main(){for(;printf("%03d",i++),strcmp(gets(s),"unlocked");fflush(0));return 0;} | ^~~~~~ main.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’ +++ |+#include <stdio.h> 1 | char s[10];i; main.c:2:13: warning: incompatible implicit declaration of built-in function ‘printf’ [-Wbuiltin-declaration-mismatch] 2 | main(){for(;printf("%03d",i++),strcmp(gets(s),"unlocked");fflush(0));return 0;} | ^~~~~~ main.c:2:13: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’ main.c:2:32: warning: implicit declaration of function ‘strcmp’ [-Wimplicit-function-declaration] 2 | main(){for(;printf("%03d",i++),strcmp(gets(s),"unlocked");fflush(0));return 0;} | ^~~~~~ main.c:1:1: note: include ‘<string.h>’ or provide a declaration of ‘strcmp’ +++ |+#include <string.h> 1 | char s[10];i; main.c:2:39: warning: implicit declaration of function ‘gets’ [-Wimplicit-function-declaration] 2 | main(){for(;printf("%03d",i++),strcmp(gets(s),"unlocked");fflush(0));return 0;} | ^~~~ main.c:2:39: warning: passing argument 1 of ‘strcmp’ makes pointer from integer without a cast [-Wint-conversion] 2 | main(){for(;printf("%03d",i++),strcmp(gets(s),"unlocked");fflush(0));return 0;} | ^~~~~~~ | |
ソースコード
char s[10];i; main(){for(;printf("%03d",i++),strcmp(gets(s),"unlocked");fflush(0));return 0;}