結果
問題 |
No.431 死亡フラグ
|
ユーザー |
![]() |
提出日時 | 2016-10-21 00:36:40 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 489 bytes |
コンパイル時間 | 1,452 ms |
コンパイル使用メモリ | 72,380 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-23 15:58:20 |
合計ジャッジ時間 | 1,818 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 16 |
ソースコード
#include <algorithm> #include <cstdio> #include <iostream> #include <map> #include <math.h> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <vector> using namespace std; #define ll long long #define INF (1 << 30) #define INFLL (1LL << 60) int main() { int a, o; int s = 0; for(int i = 0;i < 3;i++){ cin >> a; s += a; } cin >> o; if(o == 1 || s <= 1){ cout << "SURVIVED" << endl; }else{ cout << "DEAD" << endl; } return 0; }