結果

問題 No.2872 Depth of the Parentheses
ユーザー detteiuudetteiuu
提出日時 2024-09-06 21:47:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 638 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 152,360 KB
最終ジャッジ日時 2024-09-06 21:48:27
合計ジャッジ時間 18,281 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20 TLE * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

X, K = map(int, input().split())

def inverse(n, d):
    return n * pow(d, -1, MOD) % MOD

MOD = 998244353
POW = []
for i in range(101):
    POW.append(inverse(i, 100))

ans = 0
for bit in range(1<<(2*K)):
    P = 1
    cnt = 0
    flag = False
    MAX = 0
    for i in range(2*K):
        if 1<<i & bit:
            cnt += 1
            MAX = max(MAX, cnt)
            P *= POW[X]
            P %= MOD
        else:
            cnt -= 1
            P *= POW[100-X]
            P %= MOD
        if cnt < 0:
            flag = True
            break
    if flag or cnt != 0:
        continue
    ans += MAX*P%MOD
    ans %= MOD

print(ans)
0