結果
問題 | No.431 死亡フラグ |
ユーザー | 👑 testestest |
提出日時 | 2016-10-15 03:13:18 |
言語 | C90 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 70 bytes |
コンパイル時間 | 468 ms |
コンパイル使用メモリ | 18,944 KB |
実行使用メモリ | 15,056 KB |
最終ジャッジ日時 | 2024-11-22 10:39:18 |
合計ジャッジ時間 | 52,095 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
コンパイルメッセージ
main.c:1:1: warning: data definition has no type or storage class 1 | s;main(i){for(;scanf("%d",&i);s+=i);s=!puts(s<2|i?"SURVIVED":"DEAD");} | ^ main.c:1:1: warning: type defaults to ‘int’ in declaration of ‘s’ [-Wimplicit-int] main.c:1:3: warning: return type defaults to ‘int’ [-Wimplicit-int] 1 | s;main(i){for(;scanf("%d",&i);s+=i);s=!puts(s<2|i?"SURVIVED":"DEAD");} | ^~~~ main.c: In function ‘main’: main.c:1:3: warning: type of ‘i’ defaults to ‘int’ [-Wimplicit-int] main.c:1:16: warning: implicit declaration of function ‘scanf’ [-Wimplicit-function-declaration] 1 | s;main(i){for(;scanf("%d",&i);s+=i);s=!puts(s<2|i?"SURVIVED":"DEAD");} | ^~~~~ main.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’ +++ |+#include <stdio.h> 1 | s;main(i){for(;scanf("%d",&i);s+=i);s=!puts(s<2|i?"SURVIVED":"DEAD");} main.c:1:16: warning: incompatible implicit declaration of built-in function ‘scanf’ [-Wbuiltin-declaration-mismatch] 1 | s;main(i){for(;scanf("%d",&i);s+=i);s=!puts(s<2|i?"SURVIVED":"DEAD");} | ^~~~~ main.c:1:16: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’ main.c:1:40: warning: implicit declaration of function ‘puts’ [-Wimplicit-function-declaration] 1 | s;main(i){for(;scanf("%d",&i);s+=i);s=!puts(s<2|i?"SURVIVED":"DEAD");} | ^~~~ main.c:1:40: note: include ‘<stdio.h>’ or provide a declaration of ‘puts’
ソースコード
s;main(i){for(;scanf("%d",&i);s+=i);s=!puts(s<2|i?"SURVIVED":"DEAD");}