結果

問題 No.1412 Super Ryuo
ユーザー noriocnorioc
提出日時 2024-08-17 18:38:04
言語 Elixir
(1.16.2)
結果
AC  
実行時間 579 ms / 2,000 ms
コード長 413 bytes
コンパイル時間 3,158 ms
コンパイル使用メモリ 60,620 KB
実行使用メモリ 54,288 KB
最終ジャッジ日時 2024-08-17 18:38:18
合計ジャッジ時間 12,046 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 551 ms
53,668 KB
testcase_01 AC 579 ms
53,940 KB
testcase_02 AC 553 ms
53,912 KB
testcase_03 AC 549 ms
53,496 KB
testcase_04 AC 576 ms
53,540 KB
testcase_05 AC 559 ms
53,948 KB
testcase_06 AC 571 ms
53,808 KB
testcase_07 AC 579 ms
53,552 KB
testcase_08 AC 556 ms
53,568 KB
testcase_09 AC 574 ms
54,288 KB
testcase_10 AC 542 ms
53,548 KB
testcase_11 AC 566 ms
54,084 KB
testcase_12 AC 549 ms
53,672 KB
testcase_13 AC 553 ms
54,060 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, d] = li()

    t = abs(a - c) + abs(b - d)
    cond do
      t <= 3 -> 1
      a == c or b == d -> 1
      true -> 2
    end
    |> IO.puts
  end
end
0