結果

問題 No.208 王将
ユーザー gemmarogemmaro
提出日時 2020-05-05 12:31:14
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 416 bytes
コンパイル時間 1,140 ms
コンパイル使用メモリ 63,272 KB
実行使用メモリ 55,180 KB
最終ジャッジ日時 2024-06-09 23:58:00
合計ジャッジ時間 15,812 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 544 ms
54,056 KB
testcase_01 AC 526 ms
53,948 KB
testcase_02 AC 541 ms
53,996 KB
testcase_03 AC 563 ms
54,064 KB
testcase_04 AC 535 ms
54,320 KB
testcase_05 AC 541 ms
53,932 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 526 ms
53,988 KB
testcase_11 AC 538 ms
53,888 KB
testcase_12 AC 531 ms
54,492 KB
testcase_13 AC 529 ms
54,188 KB
testcase_14 AC 522 ms
54,048 KB
testcase_15 AC 543 ms
54,536 KB
testcase_16 AC 530 ms
54,184 KB
testcase_17 AC 529 ms
53,940 KB
testcase_18 AC 535 ms
53,928 KB
testcase_19 AC 527 ms
53,824 KB
testcase_20 AC 535 ms
54,196 KB
testcase_21 AC 551 ms
53,912 KB
testcase_22 AC 528 ms
54,188 KB
testcase_23 AC 527 ms
53,964 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    [{x, _}, {y, _}] = IO.read(:line) |> String.split() |> Enum.map(&Integer.parse/1)
    [{x2, _}, {y2, _}] = IO.read(:line) |> String.split() |> Enum.map(&Integer.parse/1)

    solve(x, y, x2, y2)
    |> IO.puts()
  end

  def solve(x, y, x2, y2) do
    cond do
      x == 0 -> y + 1
      y == 0 -> x + 1
      x == y && x2 == y2 -> x + 1
      :else -> max(x, y)
    end
  end
end
0