結果

問題 No.1927 AB-CD
ユーザー sotanishysotanishy
提出日時 2022-05-06 21:29:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 75,896 KB
最終ジャッジ日時 2024-07-05 22:40:21
合計ジャッジ時間 2,654 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 58 ms
75,052 KB
testcase_05 AC 54 ms
73,600 KB
testcase_06 AC 55 ms
73,216 KB
testcase_07 AC 54 ms
72,576 KB
testcase_08 AC 44 ms
60,160 KB
testcase_09 AC 63 ms
75,520 KB
testcase_10 AC 53 ms
71,296 KB
testcase_11 AC 55 ms
73,088 KB
testcase_12 AC 51 ms
65,408 KB
testcase_13 AC 49 ms
66,560 KB
testcase_14 AC 44 ms
59,544 KB
testcase_15 AC 46 ms
62,464 KB
testcase_16 AC 53 ms
73,088 KB
testcase_17 AC 53 ms
68,992 KB
testcase_18 AC 52 ms
70,272 KB
testcase_19 AC 53 ms
71,680 KB
testcase_20 AC 60 ms
75,228 KB
testcase_21 AC 54 ms
72,064 KB
testcase_22 AC 47 ms
63,872 KB
testcase_23 AC 60 ms
75,648 KB
testcase_24 AC 65 ms
75,888 KB
testcase_25 AC 62 ms
75,392 KB
testcase_26 AC 61 ms
75,896 KB
testcase_27 AC 36 ms
52,224 KB
testcase_28 AC 38 ms
51,840 KB
testcase_29 AC 37 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def comb(n, k, mod=10**9+7):
    num = den = 1
    for i in range(k):
        num = num * (n-i) % mod
        den = den * (i+1) % mod
    return num * pow(den, mod-2, mod) % mod

N = int(input())
S = input().rstrip()
x = y = 0
for c in S:
    if c in "AB":
        x += 1
    else:
        y += 1
mod = 998244353
print(comb(x+y, y, mod))
0