結果

問題 No.1927 AB-CD
ユーザー ryusukeryusuke
提出日時 2022-05-06 22:31:12
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 828 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-07-05 23:50:21
合計ジャッジ時間 7,236 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 WA -
testcase_03 AC 31 ms
10,880 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 30 ms
10,880 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