結果

問題 No.431 死亡フラグ
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-10-09 10:28:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 156 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 53,248 KB
最終ジャッジ日時 2024-07-26 12:30:08
合計ジャッジ時間 1,874 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,824 KB
testcase_01 AC 44 ms
53,132 KB
testcase_02 AC 40 ms
51,872 KB
testcase_03 AC 41 ms
52,064 KB
testcase_04 AC 40 ms
52,852 KB
testcase_05 AC 40 ms
51,872 KB
testcase_06 AC 39 ms
52,364 KB
testcase_07 AC 40 ms
53,100 KB
testcase_08 AC 40 ms
53,248 KB
testcase_09 AC 40 ms
51,964 KB
testcase_10 AC 40 ms
52,880 KB
testcase_11 AC 41 ms
53,036 KB
testcase_12 AC 42 ms
52,432 KB
testcase_13 AC 40 ms
51,892 KB
testcase_14 AC 41 ms
52,192 KB
testcase_15 AC 41 ms
52,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d1,d2,d3,s = map(int,input().split())
if d1+d2+d3 >= 2:
    if s == 1:
        print("SURVIVED")
    else:
        print("DEAD")
else:
    print("SURVIVED")
0