結果

問題 No.1927 AB-CD
ユーザー dangodango
提出日時 2023-06-16 20:33:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 60,880 KB
最終ジャッジ日時 2024-06-24 12:16:05
合計ジャッジ時間 2,579 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,884 KB
testcase_01 AC 38 ms
52,748 KB
testcase_02 AC 38 ms
52,092 KB
testcase_03 AC 39 ms
51,572 KB
testcase_04 AC 45 ms
60,324 KB
testcase_05 AC 44 ms
60,384 KB
testcase_06 AC 45 ms
58,964 KB
testcase_07 AC 44 ms
59,396 KB
testcase_08 AC 43 ms
58,612 KB
testcase_09 AC 43 ms
59,496 KB
testcase_10 AC 44 ms
60,408 KB
testcase_11 AC 46 ms
60,240 KB
testcase_12 AC 43 ms
58,968 KB
testcase_13 AC 43 ms
58,752 KB
testcase_14 AC 41 ms
59,052 KB
testcase_15 AC 42 ms
57,720 KB
testcase_16 AC 45 ms
60,540 KB
testcase_17 AC 43 ms
59,168 KB
testcase_18 AC 44 ms
59,424 KB
testcase_19 AC 43 ms
59,400 KB
testcase_20 AC 44 ms
60,396 KB
testcase_21 AC 43 ms
59,796 KB
testcase_22 AC 43 ms
58,632 KB
testcase_23 AC 50 ms
60,880 KB
testcase_24 AC 48 ms
60,176 KB
testcase_25 AC 45 ms
59,612 KB
testcase_26 AC 45 ms
59,900 KB
testcase_27 AC 39 ms
52,576 KB
testcase_28 AC 42 ms
51,936 KB
testcase_29 AC 40 ms
52,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
AB = S.count("A") + S.count("B")
M = 998244353
R1, R2 = 1, 1
for i in range(AB):
  R1 = R1 * (N - i) % M
  R2 = R2 * (i + 1) % M
print(R1 * pow(R2, M - 2, M) % M)
0