結果

問題 No.1057 素敵な日
ユーザー yukyuyukyu
提出日時 2020-05-30 13:50:53
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 294 bytes
コンパイル時間 874 ms
コンパイル使用メモリ 64,280 KB
実行使用メモリ 55,012 KB
最終ジャッジ日時 2024-06-10 00:02:40
合計ジャッジ時間 6,935 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 548 ms
54,508 KB
testcase_01 AC 523 ms
54,560 KB
testcase_02 AC 561 ms
54,128 KB
testcase_03 WA -
testcase_04 AC 530 ms
54,576 KB
testcase_05 WA -
testcase_06 AC 543 ms
54,896 KB
testcase_07 WA -
testcase_08 AC 539 ms
54,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  defp maximun_nice_day([n, m]) when n >= m, do: m * 2
  defp maximun_nice_day([n, m]) when n < m, do: n * 2
  def main() do
    IO.gets("")
      |> String.trim
      |> String.split
      |> Enum.map(&String.to_integer/1)
      |> maximun_nice_day
      |> IO.puts
  end
end
0