結果

問題 No.1927 AB-CD
ユーザー zutsuzutsu
提出日時 2022-05-08 11:08:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 778 ms / 2,000 ms
コード長 281 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 12,884 KB
最終ジャッジ日時 2024-07-07 22:20:07
合計ジャッジ時間 10,530 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
10,752 KB
testcase_01 AC 23 ms
10,624 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 24 ms
10,752 KB
testcase_04 AC 506 ms
12,312 KB
testcase_05 AC 465 ms
12,300 KB
testcase_06 AC 454 ms
12,144 KB
testcase_07 AC 385 ms
11,852 KB
testcase_08 AC 39 ms
10,752 KB
testcase_09 AC 526 ms
12,124 KB
testcase_10 AC 344 ms
11,828 KB
testcase_11 AC 417 ms
12,032 KB
testcase_12 AC 146 ms
11,264 KB
testcase_13 AC 179 ms
11,520 KB
testcase_14 AC 32 ms
10,624 KB
testcase_15 AC 67 ms
10,880 KB
testcase_16 AC 434 ms
11,932 KB
testcase_17 AC 291 ms
11,764 KB
testcase_18 AC 313 ms
11,776 KB
testcase_19 AC 354 ms
11,776 KB
testcase_20 AC 601 ms
12,428 KB
testcase_21 AC 386 ms
11,768 KB
testcase_22 AC 117 ms
11,008 KB
testcase_23 AC 651 ms
12,568 KB
testcase_24 AC 775 ms
12,760 KB
testcase_25 AC 763 ms
12,752 KB
testcase_26 AC 778 ms
12,884 KB
testcase_27 AC 25 ms
10,496 KB
testcase_28 AC 24 ms
10,624 KB
testcase_29 AC 27 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

def modinv(x):
    return pow(math.factorial(x),mod-2,mod)

ans = modinv(ab) * modinv(N-ab)
for i in range(N):
    ans *= i+1
    ans %= mod
    
print(ans)
0