結果

問題 No.431 死亡フラグ
ユーザー picares9ue
提出日時 2016-12-09 18:34:08
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 119 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-11-28 19:34:16
合計ジャッジ時間 1,059 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

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