結果
問題 |
No.431 死亡フラグ
|
ユーザー |
![]() |
提出日時 | 2018-09-28 15:56:57 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 190 bytes |
コンパイル時間 | 2,316 ms |
コンパイル使用メモリ | 165,740 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-12 04:51:36 |
合計ジャッジ時間 | 2,262 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 12 WA * 4 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int d1,d2,d3,s; cin >> d1 >> d2 >> d3 >> s; if(d1+d2+d3 == 3) cout << "DEAD" << endl; else cout << "SURVIVED" << endl; }