結果

問題 No.2297 Best Grouping
ユーザー noriocnorioc
提出日時 2024-08-13 01:34:43
言語 Elixir
(1.16.2)
結果
AC  
実行時間 589 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 1,012 ms
コンパイル使用メモリ 62,284 KB
実行使用メモリ 54,540 KB
最終ジャッジ日時 2024-08-13 01:35:00
合計ジャッジ時間 16,178 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 551 ms
53,732 KB
testcase_01 AC 584 ms
54,244 KB
testcase_02 AC 553 ms
53,872 KB
testcase_03 AC 579 ms
53,816 KB
testcase_04 AC 556 ms
53,804 KB
testcase_05 AC 555 ms
54,156 KB
testcase_06 AC 589 ms
53,940 KB
testcase_07 AC 554 ms
53,932 KB
testcase_08 AC 568 ms
53,720 KB
testcase_09 AC 546 ms
53,932 KB
testcase_10 AC 566 ms
53,776 KB
testcase_11 AC 550 ms
53,892 KB
testcase_12 AC 587 ms
54,540 KB
testcase_13 AC 541 ms
53,852 KB
testcase_14 AC 556 ms
53,688 KB
testcase_15 AC 572 ms
53,932 KB
testcase_16 AC 547 ms
53,680 KB
testcase_17 AC 583 ms
53,852 KB
testcase_18 AC 548 ms
53,684 KB
testcase_19 AC 567 ms
53,692 KB
testcase_20 AC 542 ms
53,936 KB
testcase_21 AC 573 ms
53,672 KB
testcase_22 AC 543 ms
54,416 KB
testcase_23 AC 538 ms
53,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def input, do: IO.read(:line) |> String.trim
  def ii, do: input() |> String.to_integer
  def li, do: input() |> String.split |> Enum.map(&String.to_integer/1)
  def yn(b), do: IO.puts(if b, do: "Yes", else: "No")

  def main do
    n = ii()

    cond do
      rem(n, 3) == 0 -> 0
      rem(n-2, 3) == 0 -> 1
      rem(n-4, 3) == 0 -> 2
      true -> 3
    end
    |> IO.puts
  end
end
0