結果

問題 No.1057 素敵な日
ユーザー penqenpenqen
提出日時 2020-12-16 13:55:43
言語 Elixir
(1.16.2)
結果
RE  
実行時間 -
コード長 245 bytes
コンパイル時間 1,319 ms
コンパイル使用メモリ 63,708 KB
実行使用メモリ 56,264 KB
最終ジャッジ日時 2024-06-10 00:22:34
合計ジャッジ時間 8,500 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 626 ms
55,548 KB
testcase_01 AC 623 ms
54,560 KB
testcase_02 AC 636 ms
54,272 KB
testcase_03 RE -
testcase_04 AC 620 ms
55,196 KB
testcase_05 RE -
testcase_06 AC 637 ms
54,116 KB
testcase_07 RE -
testcase_08 AC 623 ms
54,304 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 * 2
  def solve([a, b]) when b < a, do: b * 2

end
0