結果
問題 |
No.431 死亡フラグ
|
ユーザー |
![]() |
提出日時 | 2017-01-25 02:05:50 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 292 bytes |
コンパイル時間 | 516 ms |
コンパイル使用メモリ | 53,720 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-23 08:08:10 |
合計ジャッジ時間 | 1,288 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 16 |
ソースコード
#include<iostream> using namespace std; int main() { int N[4]; for (int i = 0; i < 4; i++) cin >> N[i]; if (N[3] == 1) { cout << "SURVIVED" << endl; return 0; } if (N[0] + N[1] + N[2] >= 2) { cout << "DEAD" << endl; return 0; } else cout<< "SURVIVED" << endl; return 0; }