結果

問題 No.1927 AB-CD
ユーザー simansiman
提出日時 2022-05-07 13:49:32
言語 Ruby
(3.3.0)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 809 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 25,728 KB
最終ジャッジ日時 2024-07-06 18:09:09
合計ジャッジ時間 6,494 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,160 KB
testcase_01 AC 75 ms
12,288 KB
testcase_02 AC 76 ms
12,160 KB
testcase_03 AC 75 ms
12,288 KB
testcase_04 AC 156 ms
20,352 KB
testcase_05 AC 156 ms
20,352 KB
testcase_06 AC 152 ms
20,224 KB
testcase_07 AC 142 ms
20,224 KB
testcase_08 AC 83 ms
12,672 KB
testcase_09 AC 157 ms
20,736 KB
testcase_10 AC 138 ms
19,840 KB
testcase_11 AC 150 ms
20,224 KB
testcase_12 AC 114 ms
15,360 KB
testcase_13 AC 114 ms
16,000 KB
testcase_14 AC 79 ms
12,160 KB
testcase_15 AC 92 ms
13,312 KB
testcase_16 AC 146 ms
20,480 KB
testcase_17 AC 127 ms
17,792 KB
testcase_18 AC 132 ms
18,432 KB
testcase_19 AC 141 ms
19,840 KB
testcase_20 AC 164 ms
20,736 KB
testcase_21 AC 142 ms
19,840 KB
testcase_22 AC 109 ms
15,360 KB
testcase_23 AC 168 ms
25,088 KB
testcase_24 AC 182 ms
25,600 KB
testcase_25 AC 197 ms
25,600 KB
testcase_26 AC 189 ms
25,728 KB
testcase_27 AC 78 ms
12,160 KB
testcase_28 AC 78 ms
12,160 KB
testcase_29 AC 75 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class ModInteger
  attr_reader :fac, :inv, :finv, :mod

  MOD = 998_244_353

  def initialize(n, mod: MOD)
    @mod = mod
    @fac = [1, 1]
    @inv = [1, 1]
    @finv = [1, 1]

    (2..n).each do |i|
      @fac[i] = fac[i - 1] * i % mod
      @inv[i] = mod - inv[mod % i] * (mod / i) % mod
      @finv[i] = finv[i - 1] * inv[i] % mod
    end
  end

  def combination(n, k)
    return 0 if n < k
    return 0 if n < 0 || k < 0

    fac[n] * (finv[k] * finv[n - k] % mod) % mod
  end

  def permutation(n, k = n)
    return 0 if n < k
    return 0 if n < 0 || k < 0

    fac[n] * (finv[n - k] % mod) % mod
  end

  def repeated_combination(n, k)
    combination(n + k - 1, k)
  end
end

N = gets.to_i
S = gets.chomp

mi = ModInteger.new(N + 1)

a = S.count('A')
b = S.count('B')

puts mi.combination(N, a + b)
0