結果

問題 No.431 死亡フラグ
ユーザー koba-e964koba-e964
提出日時 2016-10-17 14:41:22
言語 Ruby
(3.2.2)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 64 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 11,548 KB
実行使用メモリ 15,340 KB
最終ジャッジ日時 2023-08-14 14:59:45
合計ジャッジ時間 2,308 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
15,108 KB
testcase_01 AC 70 ms
15,332 KB
testcase_02 AC 73 ms
15,152 KB
testcase_03 AC 69 ms
15,300 KB
testcase_04 AC 69 ms
15,040 KB
testcase_05 AC 78 ms
15,152 KB
testcase_06 AC 69 ms
15,152 KB
testcase_07 AC 70 ms
15,172 KB
testcase_08 AC 64 ms
15,128 KB
testcase_09 AC 64 ms
15,140 KB
testcase_10 AC 66 ms
15,340 KB
testcase_11 AC 67 ms
15,108 KB
testcase_12 AC 67 ms
15,132 KB
testcase_13 AC 66 ms
14,996 KB
testcase_14 AC 67 ms
15,236 KB
testcase_15 AC 65 ms
15,152 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

a,b,c,d=gets.split.map &:to_i
puts a+b+c>=d*2+2?:DEAD: :SURVIVED
0