結果

問題 No.1927 AB-CD
ユーザー zutsuzutsu
提出日時 2022-05-08 10:52:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,801 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,644 KB
最終ジャッジ日時 2024-07-07 21:42:54
合計ジャッジ時間 21,432 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 25 ms
10,880 KB
testcase_04 AC 1,121 ms
13,648 KB
testcase_05 AC 1,047 ms
13,496 KB
testcase_06 AC 968 ms
13,380 KB
testcase_07 AC 812 ms
13,124 KB
testcase_08 AC 44 ms
10,880 KB
testcase_09 AC 1,171 ms
13,732 KB
testcase_10 AC 735 ms
12,932 KB
testcase_11 AC 892 ms
13,136 KB
testcase_12 AC 273 ms
11,904 KB
testcase_13 AC 331 ms
11,904 KB
testcase_14 AC 32 ms
10,880 KB
testcase_15 AC 99 ms
11,264 KB
testcase_16 AC 945 ms
13,376 KB
testcase_17 AC 576 ms
12,660 KB
testcase_18 AC 651 ms
12,792 KB
testcase_19 AC 750 ms
13,008 KB
testcase_20 AC 1,373 ms
13,980 KB
testcase_21 AC 800 ms
13,104 KB
testcase_22 AC 201 ms
11,520 KB
testcase_23 AC 1,530 ms
14,120 KB
testcase_24 AC 1,801 ms
14,512 KB
testcase_25 AC 1,797 ms
14,516 KB
testcase_26 AC 1,753 ms
14,644 KB
testcase_27 AC 26 ms
10,752 KB
testcase_28 AC 25 ms
10,752 KB
testcase_29 AC 25 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

N = int(input())
S = input()
mod = 998244353

ab = 0
for s in S:
    if s == 'A' or s == 'B':
        ab += 1

ans = math.factorial(N) * pow(math.factorial(ab),mod-2,mod) * pow(math.factorial(N-ab),mod-2,mod)
ans %= mod
print(ans)
0