結果

問題 No.1927 AB-CD
ユーザー titiatitia
提出日時 2022-05-06 21:33:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 476 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,092 KB
最終ジャッジ日時 2024-07-05 22:46:17
合計ジャッジ時間 7,073 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 170 ms
26,368 KB
testcase_01 AC 166 ms
26,240 KB
testcase_02 AC 168 ms
26,240 KB
testcase_03 AC 170 ms
26,368 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 199 ms
26,652 KB
testcase_08 AC 172 ms
26,496 KB
testcase_09 RE -
testcase_10 AC 194 ms
26,752 KB
testcase_11 RE -
testcase_12 AC 184 ms
26,624 KB
testcase_13 AC 182 ms
26,752 KB
testcase_14 AC 169 ms
26,112 KB
testcase_15 AC 173 ms
26,368 KB
testcase_16 RE -
testcase_17 AC 195 ms
26,880 KB
testcase_18 AC 192 ms
26,624 KB
testcase_19 AC 191 ms
26,644 KB
testcase_20 RE -
testcase_21 AC 198 ms
26,752 KB
testcase_22 AC 176 ms
26,624 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 165 ms
26,368 KB
testcase_28 AC 168 ms
26,368 KB
testcase_29 AC 170 ms
26,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
S=input().strip()

mod=998244353

FACT=[1]
for i in range(1,2*10**5+1):
    FACT.append(FACT[-1]*i%mod)

FACT_INV=[pow(FACT[-1],mod-2,mod)]
for i in range(2*10**5,0,-1):
    FACT_INV.append(FACT_INV[-1]*i%mod)

FACT_INV.reverse()

def Combi(a,b):
    if 0<=b<=a:
        return FACT[a]*FACT_INV[b]%mod*FACT_INV[a-b]%mod
    else:
        return 0

x=0
for s in S:
    if s=="A" or s=="B":
        x+=1

print(Combi(N,x))

0