結果

問題 No.1927 AB-CD
ユーザー noriocnorioc
提出日時 2024-11-22 03:33:42
言語 Elixir
(1.16.2)
結果
AC  
実行時間 1,304 ms / 2,000 ms
コード長 855 bytes
コンパイル時間 4,651 ms
コンパイル使用メモリ 61,764 KB
実行使用メモリ 156,920 KB
最終ジャッジ日時 2024-11-22 03:34:20
合計ジャッジ時間 32,256 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 541 ms
53,980 KB
testcase_01 AC 515 ms
54,552 KB
testcase_02 AC 542 ms
53,976 KB
testcase_03 AC 515 ms
53,844 KB
testcase_04 AC 1,117 ms
130,236 KB
testcase_05 AC 1,081 ms
129,000 KB
testcase_06 AC 1,048 ms
129,360 KB
testcase_07 AC 1,013 ms
106,788 KB
testcase_08 AC 587 ms
55,772 KB
testcase_09 AC 1,103 ms
127,832 KB
testcase_10 AC 950 ms
115,020 KB
testcase_11 AC 1,049 ms
127,652 KB
testcase_12 AC 774 ms
80,744 KB
testcase_13 AC 783 ms
83,892 KB
testcase_14 AC 573 ms
55,520 KB
testcase_15 AC 637 ms
66,444 KB
testcase_16 AC 1,066 ms
128,488 KB
testcase_17 AC 922 ms
95,320 KB
testcase_18 AC 962 ms
109,428 KB
testcase_19 AC 960 ms
109,712 KB
testcase_20 AC 1,172 ms
135,856 KB
testcase_21 AC 1,012 ms
109,476 KB
testcase_22 AC 739 ms
72,912 KB
testcase_23 AC 1,173 ms
132,840 KB
testcase_24 AC 1,287 ms
156,788 KB
testcase_25 AC 1,284 ms
156,920 KB
testcase_26 AC 1,304 ms
156,664 KB
testcase_27 AC 544 ms
53,748 KB
testcase_28 AC 515 ms
53,380 KB
testcase_29 AC 544 ms
53,740 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 comb(n, k) do
    for i <- 1..k//1, reduce: 1 do
      acc ->
        x = rem(acc * inv(i), @mod)
        rem(x * (n-i+1), @mod)
    end
  end

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

    ab = cs |> Enum.count(&(&1 == "A" || &1 == "B"))
    ans = comb(n, ab)
    IO.puts ans
  end
end
0