結果
問題 |
No.431 死亡フラグ
|
ユーザー |
![]() |
提出日時 | 2019-06-11 10:34:26 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 380 bytes |
コンパイル時間 | 1,460 ms |
コンパイル使用メモリ | 166,404 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-06 01:06:47 |
合計ジャッジ時間 | 2,194 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 12 WA * 4 |
ソースコード
#include <bits/stdc++.h> #define rep(i, n) for(long long i = 0; i > n; i ++) using namespace std; int main(){ int d[3]; int s; int count = 0; rep(i, 3){ cin >> d[i]; count += d[i]; } cin >> s; if(s == 1) cout << "SURVIVED" << endl; else if(count >= 2) cout << "DEAD" << endl; else cout << "SURVIVED" << endl; return 0; }