結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 572 ms
53,900 KB
testcase_01 AC 553 ms
53,792 KB
testcase_02 AC 543 ms
53,416 KB
testcase_03 AC 577 ms
53,808 KB
testcase_04 AC 562 ms
53,812 KB
testcase_05 AC 593 ms
53,668 KB
testcase_06 AC 547 ms
54,028 KB
testcase_07 AC 545 ms
53,804 KB
testcase_08 AC 559 ms
53,812 KB
testcase_09 AC 541 ms
53,544 KB
testcase_10 AC 591 ms
54,412 KB
testcase_11 AC 554 ms
53,800 KB
testcase_12 AC 556 ms
53,560 KB
testcase_13 AC 601 ms
53,928 KB
testcase_14 AC 574 ms
53,812 KB
testcase_15 AC 570 ms
53,676 KB
testcase_16 AC 567 ms
53,800 KB
testcase_17 AC 556 ms
54,024 KB
testcase_18 AC 547 ms
53,800 KB
testcase_19 AC 548 ms
54,032 KB
testcase_20 AC 581 ms
53,420 KB
testcase_21 AC 560 ms
53,704 KB
testcase_22 AC 564 ms
53,556 KB
testcase_23 AC 557 ms
54,012 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
    end
    |> IO.puts
  end
end
0