結果

問題 No.1057 素敵な日
ユーザー penqenpenqen
提出日時 2020-12-16 14:00:16
言語 Elixir
(1.16.2)
結果
AC  
実行時間 563 ms / 2,000 ms
コード長 292 bytes
コンパイル時間 970 ms
コンパイル使用メモリ 63,204 KB
実行使用メモリ 55,192 KB
最終ジャッジ日時 2024-06-10 00:21:30
合計ジャッジ時間 6,889 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 536 ms
54,164 KB
testcase_01 AC 536 ms
55,192 KB
testcase_02 AC 546 ms
54,132 KB
testcase_03 AC 538 ms
55,052 KB
testcase_04 AC 537 ms
54,412 KB
testcase_05 AC 546 ms
54,224 KB
testcase_06 AC 535 ms
54,116 KB
testcase_07 AC 551 ms
54,224 KB
testcase_08 AC 563 ms
54,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

  def solve([a, b]) when a == b, do: a + b - 1
  def solve([a, b]) when a < b, do: a * 2
  def solve([a, b]) when b < a, do: b * 2

end
0