結果

問題 No.1057 素敵な日
ユーザー yukyuyukyu
提出日時 2020-05-30 14:03:51
言語 Elixir
(1.16.2)
結果
AC  
実行時間 644 ms / 2,000 ms
コード長 352 bytes
コンパイル時間 1,445 ms
コンパイル使用メモリ 64,424 KB
実行使用メモリ 55,100 KB
最終ジャッジ日時 2024-06-10 00:03:44
合計ジャッジ時間 8,170 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 637 ms
53,924 KB
testcase_01 AC 632 ms
54,476 KB
testcase_02 AC 634 ms
55,100 KB
testcase_03 AC 636 ms
54,120 KB
testcase_04 AC 629 ms
54,384 KB
testcase_05 AC 644 ms
55,048 KB
testcase_06 AC 636 ms
54,516 KB
testcase_07 AC 642 ms
53,928 KB
testcase_08 AC 617 ms
53,940 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