結果
| 問題 |
No.431 死亡フラグ
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-03-06 04:53:33 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 240 bytes |
| コンパイル時間 | 404 ms |
| コンパイル使用メモリ | 55,004 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-14 02:34:42 |
| 合計ジャッジ時間 | 999 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 16 |
ソースコード
#include <iostream>
using namespace std;
int main(){
int D[3],S;
string str="DEAD";
cin >> D[0] >> D[1] >> D[2] >> S;
if(S)str="SURVIVED";
else if(D[0]+D[1]+D[2]<2)str="SURVIVED";
cout << str << endl;
return 0;
}