結果

問題 No.1927 AB-CD
ユーザー siganaisiganai
提出日時 2022-05-06 22:40:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 916 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 133,888 KB
最終ジャッジ日時 2024-07-06 00:03:39
合計ジャッジ時間 4,688 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
129,536 KB
testcase_01 AC 116 ms
129,664 KB
testcase_02 AC 113 ms
129,536 KB
testcase_03 AC 114 ms
129,792 KB
testcase_04 AC 123 ms
133,376 KB
testcase_05 AC 124 ms
133,504 KB
testcase_06 AC 121 ms
132,736 KB
testcase_07 AC 122 ms
133,248 KB
testcase_08 AC 119 ms
132,096 KB
testcase_09 AC 122 ms
133,120 KB
testcase_10 AC 121 ms
132,480 KB
testcase_11 AC 121 ms
132,992 KB
testcase_12 AC 119 ms
132,352 KB
testcase_13 AC 120 ms
132,352 KB
testcase_14 AC 120 ms
131,712 KB
testcase_15 AC 119 ms
132,096 KB
testcase_16 AC 121 ms
132,736 KB
testcase_17 AC 122 ms
132,480 KB
testcase_18 AC 126 ms
133,120 KB
testcase_19 AC 121 ms
133,376 KB
testcase_20 AC 125 ms
133,760 KB
testcase_21 AC 122 ms
132,736 KB
testcase_22 AC 129 ms
132,096 KB
testcase_23 AC 130 ms
133,120 KB
testcase_24 AC 125 ms
133,248 KB
testcase_25 AC 127 ms
133,888 KB
testcase_26 AC 123 ms
133,504 KB
testcase_27 AC 115 ms
129,792 KB
testcase_28 AC 114 ms
130,048 KB
testcase_29 AC 114 ms
129,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env PyPy3

from collections import Counter, defaultdict, deque
import itertools
import re
import math
from functools import reduce
import operator
import bisect
from heapq import *
import functools
mod=998244353

import sys
input=sys.stdin.readline
#nCrをmodで割ったあまりを求める
def cmb(n, r):
    if ( r<0 or r>n ):
        return 0
    r = min(r, n-r)
    return g1[n] * g2[r] % mod * g2[n-r] % mod

N = 3 * 10 ** 5
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())
s = input().rstrip()
ab = 0
cd = 0
for i in range(n):
    if s[i] == 'A' or s[i] == 'B':
        ab += 1
    else:
        cd += 1
ans = cmb(ab+cd,cd)
print(ans)
0