結果

問題 No.1927 AB-CD
ユーザー june19312june19312
提出日時 2022-05-10 21:06:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 76,024 KB
最終ジャッジ日時 2024-07-18 03:53:35
合計ジャッジ時間 2,660 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 35 ms
52,224 KB
testcase_04 AC 57 ms
75,264 KB
testcase_05 AC 55 ms
75,476 KB
testcase_06 AC 54 ms
75,392 KB
testcase_07 AC 52 ms
72,960 KB
testcase_08 AC 43 ms
61,952 KB
testcase_09 AC 57 ms
75,776 KB
testcase_10 AC 51 ms
71,936 KB
testcase_11 AC 53 ms
73,728 KB
testcase_12 AC 47 ms
66,048 KB
testcase_13 AC 47 ms
67,200 KB
testcase_14 AC 42 ms
60,672 KB
testcase_15 AC 44 ms
63,232 KB
testcase_16 AC 53 ms
73,984 KB
testcase_17 AC 49 ms
70,528 KB
testcase_18 AC 48 ms
70,912 KB
testcase_19 AC 51 ms
72,448 KB
testcase_20 AC 54 ms
75,648 KB
testcase_21 AC 51 ms
72,448 KB
testcase_22 AC 45 ms
65,280 KB
testcase_23 AC 55 ms
75,904 KB
testcase_24 AC 61 ms
75,528 KB
testcase_25 AC 57 ms
75,428 KB
testcase_26 AC 57 ms
76,024 KB
testcase_27 AC 34 ms
52,224 KB
testcase_28 AC 35 ms
52,224 KB
testcase_29 AC 35 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
mod = 998_244_353

ab = 0
cd = 0

for i,v in enumerate(S):
    if v == "A" or v == "B":
        ab+=1

def nCr(n,r,modulo):
    aa = 1
    bb = 1
    for i in range(r):
        aa = aa*(n-i)%modulo
        bb = bb*(i+1)%modulo
    #逆元
    inv =  pow(bb,modulo-2,modulo)

    return aa*inv%modulo

ans = nCr(N,ab,mod)

print(ans)
0