結果

問題 No.1927 AB-CD
ユーザー noriocnorioc
提出日時 2024-11-22 03:30:14
言語 Elixir
(1.16.2)
結果
AC  
実行時間 1,324 ms / 2,000 ms
コード長 810 bytes
コンパイル時間 4,271 ms
コンパイル使用メモリ 60,100 KB
実行使用メモリ 156,796 KB
最終ジャッジ日時 2024-11-22 03:30:54
合計ジャッジ時間 33,394 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 530 ms
54,228 KB
testcase_01 AC 528 ms
54,552 KB
testcase_02 AC 545 ms
54,420 KB
testcase_03 AC 525 ms
53,940 KB
testcase_04 AC 1,132 ms
130,096 KB
testcase_05 AC 1,107 ms
128,788 KB
testcase_06 AC 1,096 ms
129,092 KB
testcase_07 AC 1,046 ms
106,848 KB
testcase_08 AC 579 ms
55,640 KB
testcase_09 AC 1,139 ms
128,144 KB
testcase_10 AC 1,007 ms
109,764 KB
testcase_11 AC 1,084 ms
128,028 KB
testcase_12 AC 765 ms
80,996 KB
testcase_13 AC 832 ms
83,932 KB
testcase_14 AC 560 ms
55,572 KB
testcase_15 AC 685 ms
66,792 KB
testcase_16 AC 1,089 ms
128,356 KB
testcase_17 AC 911 ms
95,752 KB
testcase_18 AC 980 ms
108,064 KB
testcase_19 AC 1,016 ms
109,508 KB
testcase_20 AC 1,190 ms
135,956 KB
testcase_21 AC 1,025 ms
111,968 KB
testcase_22 AC 726 ms
72,964 KB
testcase_23 AC 1,237 ms
132,712 KB
testcase_24 AC 1,306 ms
156,796 KB
testcase_25 AC 1,324 ms
156,792 KB
testcase_26 AC 1,314 ms
155,680 KB
testcase_27 AC 559 ms
53,976 KB
testcase_28 AC 534 ms
53,844 KB
testcase_29 AC 530 ms
53,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  @spec input() :: binary()
  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 pow(x, n, mod) do
    cond do
      n == 0 -> 1
      rem(n, 2) == 0 ->
        y = pow(x, div(n, 2), mod)
        rem(y * y, mod)
      true ->
        rem(x * pow(x, n - 1, mod), mod)
    end
  end

  @mod 998244353

  def inv(x) do
    pow(x, @mod-2, @mod)
  end

  def main do
    n = ii()
    cs = input() |> String.graphemes()

    ab = cs |> Enum.count(&(&1 == "A" || &1 == "B"))
    for i <- 1..ab//1, reduce: 1 do
      acc ->
        x = rem(acc * inv(i), @mod)
        rem(x * (n - i + 1), @mod)
    end
    |> IO.puts
  end
end
0