結果

問題 No.2014 Eggs Hatching
ユーザー noriocnorioc
提出日時 2024-08-13 01:48:28
言語 Elixir
(1.16.2)
結果
AC  
実行時間 605 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 1,082 ms
コンパイル使用メモリ 62,324 KB
実行使用メモリ 54,160 KB
最終ジャッジ日時 2024-08-13 01:48:43
合計ジャッジ時間 15,159 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 563 ms
54,068 KB
testcase_01 AC 568 ms
53,608 KB
testcase_02 AC 587 ms
53,824 KB
testcase_03 AC 567 ms
53,936 KB
testcase_04 AC 559 ms
53,432 KB
testcase_05 AC 561 ms
53,808 KB
testcase_06 AC 579 ms
53,692 KB
testcase_07 AC 564 ms
53,672 KB
testcase_08 AC 568 ms
53,668 KB
testcase_09 AC 605 ms
53,800 KB
testcase_10 AC 581 ms
54,160 KB
testcase_11 AC 565 ms
53,676 KB
testcase_12 AC 553 ms
53,932 KB
testcase_13 AC 595 ms
53,808 KB
testcase_14 AC 562 ms
53,752 KB
testcase_15 AC 570 ms
53,924 KB
testcase_16 AC 582 ms
53,540 KB
testcase_17 AC 579 ms
54,068 KB
testcase_18 AC 565 ms
53,476 KB
testcase_19 AC 587 ms
53,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def input, do: IO.read(:line) |> String.trim
  def ii, do: input() |> String.to_integer
  def li, do: input() |> String.split |> Enum.map(&String.to_integer/1)
  def yn(b), do: IO.puts(if b, do: "Yes", else: "No")

  def main do
    a = li()
    IO.puts Enum.min(a)
  end
end
0