結果

問題 No.965 門松列が嫌い
ユーザー daikiyamanedaikiyamane
提出日時 2020-01-27 00:05:05
言語 Elixir
(1.16.2)
結果
AC  
実行時間 553 ms / 1,000 ms
コード長 233 bytes
コンパイル時間 986 ms
コンパイル使用メモリ 62,756 KB
実行使用メモリ 54,544 KB
最終ジャッジ日時 2024-06-09 22:59:42
合計ジャッジ時間 7,378 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 542 ms
54,052 KB
testcase_01 AC 547 ms
54,280 KB
testcase_02 AC 539 ms
53,964 KB
testcase_03 AC 550 ms
54,408 KB
testcase_04 AC 539 ms
54,040 KB
testcase_05 AC 547 ms
54,004 KB
testcase_06 AC 534 ms
54,284 KB
testcase_07 AC 548 ms
53,808 KB
testcase_08 AC 545 ms
54,544 KB
testcase_09 AC 553 ms
53,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    num = IO.gets("") |> String.trim |> String.split |>Enum.map(&String.to_integer/1)
    check(num)
  end
  def check([a, b, c]) do
  [abs(a-b), abs(b-c), abs(c-a)] |> Enum.min |> IO.inspect
  end
end
0