結果

問題 No.1128 Wedding Ceremony
ユーザー penqenpenqen
提出日時 2020-12-16 12:24:55
言語 Elixir
(1.16.2)
結果
AC  
実行時間 563 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 848 ms
コンパイル使用メモリ 63,992 KB
実行使用メモリ 55,244 KB
最終ジャッジ日時 2024-06-10 00:18:05
合計ジャッジ時間 14,581 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 538 ms
54,020 KB
testcase_01 AC 547 ms
53,740 KB
testcase_02 AC 526 ms
54,104 KB
testcase_03 AC 535 ms
54,844 KB
testcase_04 AC 561 ms
54,008 KB
testcase_05 AC 544 ms
54,920 KB
testcase_06 AC 523 ms
54,476 KB
testcase_07 AC 550 ms
55,080 KB
testcase_08 AC 553 ms
54,460 KB
testcase_09 AC 543 ms
54,580 KB
testcase_10 AC 533 ms
54,248 KB
testcase_11 AC 529 ms
53,872 KB
testcase_12 AC 532 ms
54,416 KB
testcase_13 AC 526 ms
54,496 KB
testcase_14 AC 534 ms
55,244 KB
testcase_15 AC 537 ms
54,344 KB
testcase_16 AC 544 ms
54,316 KB
testcase_17 AC 523 ms
54,056 KB
testcase_18 AC 524 ms
54,088 KB
testcase_19 AC 545 ms
54,552 KB
testcase_20 AC 563 ms
54,272 KB
testcase_21 AC 532 ms
54,120 KB
testcase_22 AC 527 ms
55,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  
  def main do
    IO.read(:line) |> String.trim() |> String.to_integer() |> solve() |> IO.puts()
  end

  def solve(n) when 0 <= n and n <= 100_000_000 do
    if rem(n, 2) == 0, do: n + 1, else: n
  end

end
0