結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 535 ms
53,936 KB
testcase_01 AC 529 ms
53,872 KB
testcase_02 AC 543 ms
54,556 KB
testcase_03 AC 540 ms
53,920 KB
testcase_04 AC 549 ms
53,884 KB
testcase_05 AC 539 ms
53,996 KB
testcase_06 AC 542 ms
54,256 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 531 ms
54,052 KB
testcase_11 AC 525 ms
54,116 KB
testcase_12 AC 534 ms
53,808 KB
testcase_13 AC 530 ms
53,944 KB
testcase_14 AC 546 ms
54,028 KB
testcase_15 AC 536 ms
54,320 KB
testcase_16 AC 546 ms
54,008 KB
testcase_17 AC 550 ms
53,748 KB
testcase_18 AC 538 ms
53,924 KB
testcase_19 AC 540 ms
53,948 KB
testcase_20 AC 528 ms
53,860 KB
testcase_21 AC 543 ms
54,240 KB
testcase_22 AC 535 ms
53,972 KB
testcase_23 AC 539 ms
54,540 KB
testcase_24 AC 530 ms
54,648 KB
権限があれば一括ダウンロードができます

ソースコード

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 && y2 < y -> y + 1
      y == 0 && x2 < x -> x + 1
      x == y && x2 == y2 && x2 < x -> x + 1
      :else -> max(x, y)
    end
  end
end
0