結果

問題 No.1927 AB-CD
ユーザー H20H20
提出日時 2022-05-06 21:48:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 586 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 124,800 KB
最終ジャッジ日時 2024-07-05 22:59:56
合計ジャッジ時間 3,311 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 88 ms
110,720 KB
testcase_05 AC 88 ms
110,208 KB
testcase_06 AC 84 ms
105,216 KB
testcase_07 AC 83 ms
104,576 KB
testcase_08 AC 44 ms
62,848 KB
testcase_09 AC 90 ms
110,848 KB
testcase_10 AC 78 ms
99,584 KB
testcase_11 AC 84 ms
104,704 KB
testcase_12 AC 60 ms
81,024 KB
testcase_13 AC 77 ms
84,568 KB
testcase_14 AC 42 ms
61,184 KB
testcase_15 AC 49 ms
69,632 KB
testcase_16 AC 85 ms
104,704 KB
testcase_17 AC 73 ms
94,592 KB
testcase_18 AC 75 ms
95,360 KB
testcase_19 AC 79 ms
99,712 KB
testcase_20 AC 96 ms
116,992 KB
testcase_21 AC 80 ms
99,840 KB
testcase_22 AC 55 ms
76,544 KB
testcase_23 AC 96 ms
117,376 KB
testcase_24 AC 103 ms
124,800 KB
testcase_25 AC 104 ms
124,672 KB
testcase_26 AC 103 ms
124,800 KB
testcase_27 AC 36 ms
51,840 KB
testcase_28 AC 36 ms
51,840 KB
testcase_29 AC 36 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#コンビネーション
def cmb(n, r, mod):
    if ( r<0 or r>n ):
        return 0
    r = min(r, n-r)
    return g1[n] * g2[r] * g2[n-r] % mod

mod = 998244353
g1 = [1, 1] # 元テーブル
g2 = [1, 1] #逆元テーブル
inverse = [0, 1] #逆元テーブル計算用テーブル



N = int(input())
S = input()
AB = S.count('A')+S.count('B')
CD = S.count('C')+S.count('D')

for i in range( 2, N + 1 ):
    g1.append( ( g1[-1] * i ) % mod )
    inverse.append( ( -inverse[mod % i] * (mod//i) ) % mod )
    g2.append( (g2[-1] * inverse[-1]) % mod )




print(g1[N]*g2[AB]*g2[CD]%mod)
0