結果

問題 No.1927 AB-CD
ユーザー ikomaikoma
提出日時 2022-05-06 21:47:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 76,084 KB
最終ジャッジ日時 2024-07-05 22:57:46
合計ジャッジ時間 2,825 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,888 KB
testcase_01 AC 36 ms
52,316 KB
testcase_02 AC 35 ms
53,352 KB
testcase_03 AC 35 ms
53,488 KB
testcase_04 AC 57 ms
75,516 KB
testcase_05 AC 53 ms
73,712 KB
testcase_06 AC 53 ms
72,896 KB
testcase_07 AC 55 ms
72,108 KB
testcase_08 AC 43 ms
60,640 KB
testcase_09 AC 56 ms
75,624 KB
testcase_10 AC 50 ms
72,436 KB
testcase_11 AC 51 ms
72,576 KB
testcase_12 AC 46 ms
66,780 KB
testcase_13 AC 46 ms
67,128 KB
testcase_14 AC 40 ms
60,008 KB
testcase_15 AC 43 ms
62,600 KB
testcase_16 AC 52 ms
73,288 KB
testcase_17 AC 49 ms
69,804 KB
testcase_18 AC 50 ms
71,408 KB
testcase_19 AC 50 ms
72,764 KB
testcase_20 AC 58 ms
75,876 KB
testcase_21 AC 52 ms
72,016 KB
testcase_22 AC 44 ms
64,464 KB
testcase_23 AC 56 ms
75,608 KB
testcase_24 AC 60 ms
75,612 KB
testcase_25 AC 59 ms
76,084 KB
testcase_26 AC 59 ms
75,692 KB
testcase_27 AC 36 ms
52,740 KB
testcase_28 AC 36 ms
53,628 KB
testcase_29 AC 35 ms
52,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=input().strip()
n_ab=0
for s in S:
    if s in "AB":
        n_ab+=1
n_cd = N-n_ab
def combo(n, k, mod=998244353):
    def fact(n,k=0):
        a=1
        for i in range(k+1,n+1):
            a=a * i % mod
        return a
    k=min(k,n-k)
    a=fact(n, n-k) # (n-k)!
    b=fact(k) # k!
    return (a * pow(b, mod-2, mod)) % mod
print(combo(N, n_ab))
0