結果

問題 No.208 王将
ユーザー gemmarogemmaro
提出日時 2020-05-05 12:36:19
言語 Elixir
(1.16.2)
結果
AC  
実行時間 581 ms / 1,000 ms
コード長 438 bytes
コンパイル時間 1,091 ms
コンパイル使用メモリ 62,652 KB
実行使用メモリ 55,676 KB
最終ジャッジ日時 2024-06-09 23:57:42
合計ジャッジ時間 16,453 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 545 ms
55,004 KB
testcase_01 AC 544 ms
55,544 KB
testcase_02 AC 535 ms
53,992 KB
testcase_03 AC 559 ms
54,128 KB
testcase_04 AC 553 ms
53,876 KB
testcase_05 AC 562 ms
53,932 KB
testcase_06 AC 539 ms
54,532 KB
testcase_07 AC 539 ms
55,264 KB
testcase_08 AC 541 ms
54,132 KB
testcase_09 AC 563 ms
53,912 KB
testcase_10 AC 581 ms
54,200 KB
testcase_11 AC 572 ms
55,676 KB
testcase_12 AC 576 ms
54,000 KB
testcase_13 AC 557 ms
54,988 KB
testcase_14 AC 544 ms
54,000 KB
testcase_15 AC 552 ms
54,604 KB
testcase_16 AC 543 ms
54,488 KB
testcase_17 AC 543 ms
54,472 KB
testcase_18 AC 532 ms
54,124 KB
testcase_19 AC 557 ms
55,244 KB
testcase_20 AC 573 ms
53,896 KB
testcase_21 AC 548 ms
54,244 KB
testcase_22 AC 536 ms
53,992 KB
testcase_23 AC 545 ms
54,588 KB
testcase_24 AC 533 ms
54,800 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
      y == 0 && x2 < x -> x
      x == y && x2 == y2 && x2 < x -> x + 1
      :else -> max(x, y)
    end
  end
end
0