結果

問題 No.965 門松列が嫌い
ユーザー penqenpenqen
提出日時 2020-12-25 00:19:31
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 252 bytes
コンパイル時間 1,404 ms
コンパイル使用メモリ 63,372 KB
実行使用メモリ 55,180 KB
最終ジャッジ日時 2024-06-10 00:26:53
合計ジャッジ時間 8,735 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 652 ms
54,108 KB
testcase_01 AC 646 ms
53,864 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 639 ms
53,856 KB
testcase_05 WA -
testcase_06 AC 653 ms
54,116 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 633 ms
53,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    [a, b, c] = IO.read(:line) |> String.trim() |> String.split(" ") |> Enum.map(&String.to_integer/1)
    solve(a, b, c) |> IO.puts()
  end

  def solve(a, b, c) do
    [b - a, b - c, abs(a - c)] |> Enum.min()
  end
end
0