結果

問題 No.431 死亡フラグ
ユーザー gemmarogemmaro
提出日時 2020-04-09 10:09:15
言語 Elixir
(1.16.2)
結果
AC  
実行時間 588 ms / 2,000 ms
コード長 381 bytes
コンパイル時間 1,174 ms
コンパイル使用メモリ 63,444 KB
実行使用メモリ 55,660 KB
最終ジャッジ日時 2024-06-09 23:13:24
合計ジャッジ時間 10,910 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 552 ms
54,864 KB
testcase_01 AC 535 ms
54,508 KB
testcase_02 AC 559 ms
54,736 KB
testcase_03 AC 588 ms
55,064 KB
testcase_04 AC 550 ms
53,872 KB
testcase_05 AC 565 ms
54,988 KB
testcase_06 AC 563 ms
55,660 KB
testcase_07 AC 579 ms
54,764 KB
testcase_08 AC 551 ms
53,980 KB
testcase_09 AC 579 ms
54,752 KB
testcase_10 AC 539 ms
54,020 KB
testcase_11 AC 547 ms
53,852 KB
testcase_12 AC 535 ms
53,996 KB
testcase_13 AC 545 ms
54,380 KB
testcase_14 AC 535 ms
54,212 KB
testcase_15 AC 542 ms
54,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.gets("")
    |> String.trim()
    |> String.split()
    |> Enum.map(&String.to_integer(&1))
    |> (fn d ->
          cond do
            List.last(d) == 1 ||
                d |> Enum.slice(0..-2) |> Enum.sum() < 2 ->
              "SURVIVED"

            true ->
              "DEAD"
          end
        end).()
    |> IO.puts()
  end
end
0