結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 585 ms
54,920 KB
testcase_01 AC 578 ms
54,508 KB
testcase_02 AC 590 ms
54,472 KB
testcase_03 AC 575 ms
54,608 KB
testcase_04 AC 590 ms
54,260 KB
testcase_05 AC 582 ms
54,724 KB
testcase_06 AC 580 ms
54,248 KB
testcase_07 AC 598 ms
55,432 KB
testcase_08 AC 582 ms
53,864 KB
testcase_09 AC 590 ms
53,736 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
    [abs(b - a), abs(b - c), abs(a - c)] |> Enum.min()
  end
end
0