結果
問題 | No.431 死亡フラグ |
ユーザー |
![]() |
提出日時 | 2016-12-02 17:24:17 |
言語 | C90 (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 385 bytes |
コンパイル時間 | 116 ms |
コンパイル使用メモリ | 20,224 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-27 17:20:22 |
合計ジャッジ時間 | 733 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 16 |
コンパイルメッセージ
main.c: In function ‘main’: main.c:8:5: warning: ignoring return value of ‘fscanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | fscanf(stdin, "%d %d %d %d", &s[0], &s[1], &s[2], &s[3]); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int main(void){ int s[4]; int d = 0; fscanf(stdin, "%d %d %d %d", &s[0], &s[1], &s[2], &s[3]); if(s[3] == 1){ puts("SURVIVED"); return 0; } for(int i = 0; i < 3; i++){ if(s[i] == 1){ d++; } } if(d > 1){ puts("DEAD"); }else{ puts("SURVIVED"); } return 0; }