結果

問題 No.410 出会い
ユーザー gemmarogemmaro
提出日時 2020-04-15 10:27:26
言語 Elixir
(1.16.2)
結果
AC  
実行時間 554 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 913 ms
コンパイル使用メモリ 62,384 KB
実行使用メモリ 54,284 KB
最終ジャッジ日時 2024-06-09 23:25:11
合計ジャッジ時間 14,337 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 527 ms
54,008 KB
testcase_01 AC 535 ms
53,928 KB
testcase_02 AC 523 ms
53,468 KB
testcase_03 AC 520 ms
53,624 KB
testcase_04 AC 521 ms
53,684 KB
testcase_05 AC 536 ms
53,804 KB
testcase_06 AC 524 ms
53,812 KB
testcase_07 AC 532 ms
53,676 KB
testcase_08 AC 520 ms
53,684 KB
testcase_09 AC 534 ms
54,072 KB
testcase_10 AC 534 ms
53,680 KB
testcase_11 AC 533 ms
53,904 KB
testcase_12 AC 523 ms
54,284 KB
testcase_13 AC 522 ms
53,800 KB
testcase_14 AC 527 ms
53,724 KB
testcase_15 AC 529 ms
53,932 KB
testcase_16 AC 527 ms
53,692 KB
testcase_17 AC 517 ms
53,676 KB
testcase_18 AC 531 ms
54,144 KB
testcase_19 AC 544 ms
54,060 KB
testcase_20 AC 554 ms
53,936 KB
testcase_21 AC 530 ms
53,620 KB
testcase_22 AC 530 ms
54,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    1..2
    |> Enum.map(fn _ ->
      IO.read(:line)
      |> String.split()
      |> Enum.map(&String.to_integer/1)
    end)
    |> solve
    |> IO.puts()
  end

  defp solve([[px, py], [qx, qy]]) do
    (((px - qx) |> abs) + ((py - qy) |> abs)) / 2
  end
end
0