結果

問題 No.21 平均の差
ユーザー 3qvwn3qvwn
提出日時 2019-07-05 23:30:24
言語 Elixir
(1.16.2)
結果
AC  
実行時間 695 ms / 5,000 ms
コード長 309 bytes
コンパイル時間 1,314 ms
コンパイル使用メモリ 63,192 KB
実行使用メモリ 54,568 KB
最終ジャッジ日時 2024-06-09 22:53:13
合計ジャッジ時間 9,272 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 664 ms
54,056 KB
testcase_01 AC 684 ms
54,464 KB
testcase_02 AC 695 ms
54,116 KB
testcase_03 AC 674 ms
54,052 KB
testcase_04 AC 688 ms
54,332 KB
testcase_05 AC 695 ms
54,380 KB
testcase_06 AC 693 ms
54,324 KB
testcase_07 AC 693 ms
54,444 KB
testcase_08 AC 689 ms
54,568 KB
testcase_09 AC 677 ms
54,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do 
  def main do
    n = IO.gets("") |> String.trim |> String.to_integer
    _ = IO.gets("")
    IO.stream(:stdio, :line) |> Enum.take(n) |> Enum.map(&String.trim/1) |> Enum.map(&String.to_integer/1) |> Enum.sort |> (fn list -> Enum.at(list, -1) - Enum.at(list, 0) end).() |> IO.puts
  end
end
0