結果

問題 No.431 死亡フラグ
コンテスト
ユーザー めうめう🎒
提出日時 2016-10-21 00:36:40
言語 C++11
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 489 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 503 ms
コンパイル使用メモリ 95,480 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2026-05-17 08:59:51
合計ジャッジ時間 1,502 ms
ジャッジサーバーID
(参考情報)
judge3_1 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#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;
}
0