結果

問題 No.1927 AB-CD
ユーザー lloyzlloyz
提出日時 2022-06-12 00:28:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 440 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 97,668 KB
最終ジャッジ日時 2024-09-22 10:58:23
合計ジャッジ時間 4,494 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,708 KB
testcase_01 AC 43 ms
54,264 KB
testcase_02 AC 42 ms
54,660 KB
testcase_03 AC 40 ms
55,856 KB
testcase_04 AC 95 ms
92,364 KB
testcase_05 AC 89 ms
91,628 KB
testcase_06 AC 88 ms
91,144 KB
testcase_07 AC 84 ms
89,724 KB
testcase_08 AC 49 ms
63,524 KB
testcase_09 AC 93 ms
92,768 KB
testcase_10 AC 80 ms
88,652 KB
testcase_11 AC 86 ms
90,440 KB
testcase_12 AC 59 ms
73,240 KB
testcase_13 AC 62 ms
75,008 KB
testcase_14 AC 48 ms
62,652 KB
testcase_15 AC 54 ms
66,932 KB
testcase_16 AC 88 ms
90,944 KB
testcase_17 AC 71 ms
80,236 KB
testcase_18 AC 80 ms
87,940 KB
testcase_19 AC 83 ms
88,988 KB
testcase_20 AC 94 ms
94,384 KB
testcase_21 AC 84 ms
89,260 KB
testcase_22 AC 58 ms
72,100 KB
testcase_23 AC 97 ms
95,396 KB
testcase_24 AC 100 ms
97,464 KB
testcase_25 AC 108 ms
97,668 KB
testcase_26 AC 106 ms
97,524 KB
testcase_27 AC 43 ms
55,164 KB
testcase_28 AC 42 ms
54,800 KB
testcase_29 AC 43 ms
53,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

n = int(input())
S = list(input())
mod = 998244353

fact = [1] * (n + 1)
inv = [1] * (n + 1)
finv = [1] * (n + 1)
for i in range(2, n + 1):
    fact[i] = fact[i - 1] * i % mod
    inv[i] = mod - inv[mod % i] * (mod // i) % mod
    finv[i] = finv[i - 1] * inv[i] % mod
def comb(x, y):
    return (fact[x] * finv[y] % mod) * finv[x - y] % mod

counter = Counter(S)
print(comb(n, counter['A'] + counter['B']))
0