結果

問題 No.431 死亡フラグ
ユーザー k0825k0825
提出日時 2019-04-29 00:26:43
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
WA  
実行時間 -
コード長 93 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 10,640 KB
実行使用メモリ 8,000 KB
最終ジャッジ日時 2023-08-23 12:22:30
合計ジャッジ時間 1,322 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
7,832 KB
testcase_01 WA -
testcase_02 AC 17 ms
7,956 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 16 ms
7,944 KB
testcase_08 WA -
testcase_09 AC 16 ms
7,820 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

d=input().split();s=d[-1]
d=d[:-1]
print('SERVIVED' if s=='1' or d.count('1')<2 else 'DEAD')
0