結果

問題 No.1927 AB-CD
ユーザー 👑 KazunKazun
提出日時 2022-05-06 21:34:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 89,856 KB
最終ジャッジ日時 2024-07-05 22:47:30
合計ジャッジ時間 2,715 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 37 ms
51,456 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 76 ms
86,528 KB
testcase_05 AC 72 ms
85,632 KB
testcase_06 AC 63 ms
77,696 KB
testcase_07 AC 60 ms
75,520 KB
testcase_08 AC 48 ms
61,184 KB
testcase_09 AC 71 ms
86,400 KB
testcase_10 AC 56 ms
74,240 KB
testcase_11 AC 59 ms
76,800 KB
testcase_12 AC 49 ms
66,944 KB
testcase_13 AC 50 ms
68,736 KB
testcase_14 AC 41 ms
60,288 KB
testcase_15 AC 44 ms
63,360 KB
testcase_16 AC 58 ms
77,312 KB
testcase_17 AC 55 ms
72,448 KB
testcase_18 AC 55 ms
73,216 KB
testcase_19 AC 57 ms
75,008 KB
testcase_20 AC 74 ms
87,040 KB
testcase_21 AC 61 ms
75,008 KB
testcase_22 AC 51 ms
65,664 KB
testcase_23 AC 74 ms
88,064 KB
testcase_24 AC 77 ms
89,856 KB
testcase_25 AC 78 ms
89,088 KB
testcase_26 AC 75 ms
89,856 KB
testcase_27 AC 36 ms
51,456 KB
testcase_28 AC 33 ms
51,840 KB
testcase_29 AC 35 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def nCr(n,r):
    a=b=1
    while r:
        a*=n; a%=Mod; n-=1
        b*=r; b%=Mod; r-=1
    return a*pow(b,Mod-2,Mod)%Mod

Mod=998244353
N=int(input())
S=list(input())

A,B,C,D="ABCD"
r=0
for s in S:
    if s==A or s==B:
        r+=1

print(nCr(N,r))
0