結果
| 問題 |
No.431 死亡フラグ
|
| コンテスト | |
| ユーザー |
tossy
|
| 提出日時 | 2016-10-14 22:21:51 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 721 bytes |
| コンパイル時間 | 747 ms |
| コンパイル使用メモリ | 83,012 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-22 06:59:12 |
| 合計ジャッジ時間 | 1,411 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 16 |
ソースコード
#include <cstdio>
#include <cstring>
#include <string>
#include <cmath>
#include <cassert>
#include <iostream>
#include <algorithm>
#include <stack>
#include <queue>
#include <vector>
#include <set>
#include <map>
#include <bitset>
using namespace std;
#define repl(i,a,b) for(int i=(int)(a);i<(int)(b);i++)
#define rep(i,n) repl(i,0,n)
#define mp(a,b) make_pair(a,b)
#define pb(a) push_back(a)
#define all(x) (x).begin(),(x).end()
#define dbg(x) cout<<#x"="<<x<<endl
#define fi first
#define se second
#define INF 2147483600
int main(){
int a,b,c,d;
cin>>a>>b>>c>>d;
if(d==1){
cout<<"SURVIVED"<<endl;
} else if(a+b+c>=2){
cout<<"DEAD"<<endl;
} else {
cout<<"SURVIVED"<<endl;
}
return 0;
}
tossy