結果

問題 No.1927 AB-CD
ユーザー Omura ShunsukeOmura Shunsuke
提出日時 2022-05-11 23:00:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 597 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 155,640 KB
最終ジャッジ日時 2024-07-19 08:49:52
合計ジャッジ時間 6,011 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
150,376 KB
testcase_01 AC 124 ms
150,824 KB
testcase_02 AC 130 ms
150,068 KB
testcase_03 AC 132 ms
151,056 KB
testcase_04 AC 137 ms
155,640 KB
testcase_05 AC 137 ms
153,632 KB
testcase_06 AC 137 ms
153,900 KB
testcase_07 AC 139 ms
154,032 KB
testcase_08 AC 136 ms
152,832 KB
testcase_09 AC 142 ms
155,244 KB
testcase_10 AC 139 ms
154,280 KB
testcase_11 AC 141 ms
153,560 KB
testcase_12 AC 137 ms
154,160 KB
testcase_13 AC 131 ms
154,036 KB
testcase_14 AC 136 ms
152,324 KB
testcase_15 AC 134 ms
153,292 KB
testcase_16 AC 142 ms
153,520 KB
testcase_17 AC 140 ms
153,732 KB
testcase_18 AC 140 ms
153,320 KB
testcase_19 AC 141 ms
154,436 KB
testcase_20 AC 143 ms
153,880 KB
testcase_21 AC 142 ms
153,908 KB
testcase_22 AC 136 ms
152,948 KB
testcase_23 AC 145 ms
153,552 KB
testcase_24 AC 143 ms
154,560 KB
testcase_25 AC 145 ms
154,996 KB
testcase_26 AC 142 ms
154,908 KB
testcase_27 AC 132 ms
150,032 KB
testcase_28 AC 131 ms
150,056 KB
testcase_29 AC 130 ms
150,232 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 #出力の制限
N = (10**5)*4
g1 = [1, 1] # 元テーブル
g2 = [1, 1] #逆元テーブル
inverse = [0, 1] #逆元テーブル計算用テーブル

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 )
    
N = int(input())
cnt = 0
S = input()
for i in range(N):
    if S[i] == "A" or S[i] == "B":
        cnt += 1
print(cmb(N,cnt,mod))
0