結果

問題 No.21 平均の差
ユーザー gemmarogemmaro
提出日時 2020-04-10 09:15:27
言語 Elixir
(1.16.2)
結果
AC  
実行時間 563 ms / 5,000 ms
コード長 306 bytes
コンパイル時間 1,122 ms
コンパイル使用メモリ 62,424 KB
実行使用メモリ 54,672 KB
最終ジャッジ日時 2024-06-09 23:16:23
合計ジャッジ時間 7,660 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 563 ms
54,052 KB
testcase_01 AC 518 ms
54,276 KB
testcase_02 AC 526 ms
54,404 KB
testcase_03 AC 531 ms
54,440 KB
testcase_04 AC 525 ms
53,808 KB
testcase_05 AC 523 ms
54,672 KB
testcase_06 AC 529 ms
54,180 KB
testcase_07 AC 519 ms
54,032 KB
testcase_08 AC 525 ms
54,068 KB
testcase_09 AC 523 ms
54,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    n =
      IO.gets("")
      |> String.trim()
      |> String.to_integer()

    IO.gets("")

    ns =
      1..n
      |> Enum.map(fn _ ->
        IO.gets("") |> String.trim() |> String.to_integer()
      end)

    (Enum.max(ns) - Enum.min(ns))
    |> IO.puts()
  end
end
0