結果

問題 No.1927 AB-CD
ユーザー ryusukeryusuke
提出日時 2022-05-06 22:31:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 828 bytes
コンパイル時間 503 ms
コンパイル使用メモリ 10,856 KB
実行使用メモリ 9,120 KB
最終ジャッジ日時 2023-09-20 03:31:40
合計ジャッジ時間 6,771 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
8,272 KB
testcase_01 AC 16 ms
8,176 KB
testcase_02 WA -
testcase_03 AC 15 ms
8,212 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 15 ms
8,244 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()

mod = 998244353
a = [0] * 4
for i in s:
    if i == 'A':
        a[0] += 1
    if i == 'B':
        a[1] += 1
    if i == 'C':
        a[2] += 1
    if i == 'D':
        a[3] += 1

up = 1
for i in range(1, sum(a) + 1):
    up *= i
    up %= mod

b = [1] * 4
for i in range(4):
    for j in range(1, a[i] + 1):
        b[i] *= j
        b[i] %= mod

ans = up * pow(b[0], -1, mod)
ans %= mod
ans *= pow(b[1], -1, mod)
ans %= mod
ans *= pow(b[2], -1, mod)
ans %= mod
ans *= pow(b[3], -1, mod)
ans %= mod

x = 1
for i in range(1, a[0] + a[1] + 1):
    x *= i
    x %= mod
x *= pow(b[0], -1, mod)
x %= mod
x *= pow(b[1], -1, mod)
x %= mod

y = 1
for i in range(1, a[2] + a[3] + 1):
    y *= i
    y %= mod
y *= pow(b[2], -1, mod)
y %= mod
y *= pow(b[3], -1, mod)
y %= mod

print((ans - x * y + 1) % mod)
0