結果

問題 No.965 門松列が嫌い
ユーザー noriocnorioc
提出日時 2024-08-12 14:24:57
言語 Elixir
(1.16.2)
結果
AC  
実行時間 594 ms / 1,000 ms
コード長 341 bytes
コンパイル時間 1,946 ms
コンパイル使用メモリ 62,936 KB
実行使用メモリ 54,868 KB
最終ジャッジ日時 2024-08-12 14:25:07
合計ジャッジ時間 8,586 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 562 ms
54,036 KB
testcase_01 AC 589 ms
53,992 KB
testcase_02 AC 546 ms
53,996 KB
testcase_03 AC 564 ms
54,400 KB
testcase_04 AC 545 ms
54,196 KB
testcase_05 AC 554 ms
53,876 KB
testcase_06 AC 544 ms
54,868 KB
testcase_07 AC 540 ms
53,924 KB
testcase_08 AC 594 ms
54,720 KB
testcase_09 AC 563 ms
53,988 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, b, c] = li()

    Enum.min([abs(a-b), abs(b-c), abs(c-a)])
    |> IO.puts
  end
end
0