結果

問題 No.1927 AB-CD
ユーザー pluto77pluto77
提出日時 2022-05-29 16:22:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 189 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 60,892 KB
最終ジャッジ日時 2024-09-21 00:13:50
合計ジャッジ時間 3,049 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,012 KB
testcase_01 AC 35 ms
52,604 KB
testcase_02 AC 35 ms
52,148 KB
testcase_03 AC 34 ms
52,280 KB
testcase_04 AC 41 ms
60,008 KB
testcase_05 AC 41 ms
59,508 KB
testcase_06 AC 41 ms
60,892 KB
testcase_07 AC 39 ms
59,608 KB
testcase_08 AC 38 ms
58,260 KB
testcase_09 AC 43 ms
59,484 KB
testcase_10 AC 40 ms
59,240 KB
testcase_11 AC 39 ms
59,528 KB
testcase_12 AC 39 ms
58,272 KB
testcase_13 AC 39 ms
58,404 KB
testcase_14 AC 40 ms
58,616 KB
testcase_15 AC 39 ms
58,232 KB
testcase_16 AC 41 ms
59,624 KB
testcase_17 AC 39 ms
58,604 KB
testcase_18 AC 38 ms
59,588 KB
testcase_19 AC 38 ms
58,992 KB
testcase_20 AC 39 ms
59,752 KB
testcase_21 AC 38 ms
60,320 KB
testcase_22 AC 38 ms
58,420 KB
testcase_23 AC 38 ms
60,300 KB
testcase_24 AC 41 ms
60,708 KB
testcase_25 AC 39 ms
59,716 KB
testcase_26 AC 40 ms
59,624 KB
testcase_27 AC 36 ms
51,920 KB
testcase_28 AC 34 ms
52,992 KB
testcase_29 AC 35 ms
52,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1927
n=int(input())
s=input()
ab=s.count("A")+s.count("B")
mod=998244353
res1=1
res2=1
for i in range(ab):
 res1=res1*(n-i)%mod
 res2=res2*(i+1)%mod
print(res1*pow(res2,mod-2,mod)%mod)
0