結果

問題 No.1927 AB-CD
ユーザー Akijin_007Akijin_007
提出日時 2022-05-06 21:38:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 310 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 68,224 KB
最終ジャッジ日時 2024-07-05 22:51:02
合計ジャッジ時間 6,006 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,504 KB
testcase_01 AC 40 ms
53,248 KB
testcase_02 AC 42 ms
53,632 KB
testcase_03 AC 40 ms
53,632 KB
testcase_04 AC 241 ms
66,304 KB
testcase_05 AC 230 ms
65,920 KB
testcase_06 AC 230 ms
66,432 KB
testcase_07 AC 213 ms
66,048 KB
testcase_08 AC 67 ms
61,996 KB
testcase_09 AC 247 ms
66,304 KB
testcase_10 AC 195 ms
65,664 KB
testcase_11 AC 218 ms
66,304 KB
testcase_12 AC 132 ms
63,616 KB
testcase_13 AC 143 ms
63,488 KB
testcase_14 AC 58 ms
61,696 KB
testcase_15 AC 87 ms
62,208 KB
testcase_16 AC 227 ms
66,304 KB
testcase_17 AC 183 ms
65,024 KB
testcase_18 AC 189 ms
65,408 KB
testcase_19 AC 203 ms
65,536 KB
testcase_20 AC 266 ms
66,816 KB
testcase_21 AC 207 ms
65,792 KB
testcase_22 AC 112 ms
63,360 KB
testcase_23 AC 281 ms
66,944 KB
testcase_24 AC 301 ms
68,224 KB
testcase_25 AC 307 ms
67,584 KB
testcase_26 AC 310 ms
67,968 KB
testcase_27 AC 41 ms
53,500 KB
testcase_28 AC 41 ms
53,632 KB
testcase_29 AC 41 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

N = int(input())
S = input()

mod = 998244353

t = 1

m = N

fac = [1] * (m+1)
facinv = [1] * (m+1)

for i in range(1, m+1):
    fac[i] = (fac[i-1] * i) % mod
    facinv[i] = (facinv[i-1] * pow(i, mod-2, mod)) % mod

def nCk(n, k):
    return (fac[n] * facinv[k] * facinv[n-k]) % mod

from collections import Counter

c = Counter()

a = S.count("A") + S.count("B")

print(nCk(N, a))
0