結果

問題 No.1057 素敵な日
ユーザー yukyuyukyu
提出日時 2020-05-30 14:03:51
言語 Elixir
(1.18.1)
結果
AC  
実行時間 562 ms / 2,000 ms
コード長 352 bytes
コンパイル時間 1,067 ms
コンパイル使用メモリ 63,096 KB
実行使用メモリ 55,136 KB
最終ジャッジ日時 2024-12-31 05:03:23
合計ジャッジ時間 7,100 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 562 ms
55,136 KB
testcase_01 AC 550 ms
54,220 KB
testcase_02 AC 556 ms
53,912 KB
testcase_03 AC 549 ms
54,268 KB
testcase_04 AC 544 ms
54,608 KB
testcase_05 AC 560 ms
53,848 KB
testcase_06 AC 542 ms
53,912 KB
testcase_07 AC 544 ms
54,424 KB
testcase_08 AC 547 ms
54,168 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
  defp maximun_nice_day([n, m]) when n == m, do: n * 2 - 1
  def main() do
    IO.gets("")
      |> String.trim
      |> String.split
      |> Enum.map(&String.to_integer/1)
      |> maximun_nice_day
      |> IO.puts
  end
end
0