結果
| 問題 | No.431 死亡フラグ |
| コンテスト | |
| ユーザー |
bal4u
|
| 提出日時 | 2019-04-17 08:31:18 |
| 言語 | C(gnu17) (gcc 15.2.0) |
| 結果 |
AC
|
| 実行時間 | 0 ms / 2,000 ms |
| + 733µs | |
| コード長 | 200 bytes |
| 記録 | |
| コンパイル時間 | 47 ms |
| コンパイル使用メモリ | 35,968 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-22 06:37:55 |
| 合計ジャッジ時間 | 1,230 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 16 |
ソースコード
// yukicoder: No.431 死亡フラグ
// 2019.4.17 bal4u
#include <stdio.h>
int main()
{
int a, b, c, s;
scanf("%d%d%d%d", &a, &b, &c, &s);
puts(s || (a+b+c < 2)? "SURVIVED": "DEAD");
return 0;
}
bal4u