結果

問題 No.2872 Depth of the Parentheses
ユーザー ShirotsumeShirotsume
提出日時 2024-09-06 21:44:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,815 ms / 2,000 ms
コード長 902 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 317,876 KB
最終ジャッジ日時 2024-09-06 21:45:03
合計ジャッジ時間 24,511 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
62,664 KB
testcase_01 AC 64 ms
297,808 KB
testcase_02 AC 51 ms
70,876 KB
testcase_03 AC 78 ms
293,788 KB
testcase_04 AC 99 ms
84,280 KB
testcase_05 AC 47 ms
303,000 KB
testcase_06 AC 46 ms
62,844 KB
testcase_07 AC 1,815 ms
317,876 KB
testcase_08 AC 67 ms
78,116 KB
testcase_09 AC 51 ms
62,856 KB
testcase_10 AC 475 ms
77,328 KB
testcase_11 AC 158 ms
77,392 KB
testcase_12 AC 104 ms
77,120 KB
testcase_13 AC 140 ms
77,464 KB
testcase_14 AC 98 ms
77,364 KB
testcase_15 AC 68 ms
71,032 KB
testcase_16 AC 1,770 ms
77,776 KB
testcase_17 AC 79 ms
77,316 KB
testcase_18 AC 1,789 ms
77,588 KB
testcase_19 AC 46 ms
55,452 KB
testcase_20 AC 519 ms
77,220 KB
testcase_21 AC 46 ms
56,536 KB
testcase_22 AC 554 ms
77,116 KB
evil_01.txt TLE -
evil_02.txt TLE -
evil_03.txt TLE -
evil_04.txt TLE -
evil_05.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
def debug(*x):print('debug:',*x, file=sys.stderr)
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353

x, k = mi()
ans = 0
i100 = pow(100, -1, mod)
for bit in range(1 << (2 * k)):
    s = []
    p = 1
    for i in range(2 * k):
        if bit & (1 << i):
            s.append('(')
            p *= x * i100
            p %= mod
        else:
            s.append(')')
            p *= 1 - x * i100
            p %= mod
    cnt = 0
    maxicnt = 0
    for i in range(2 * k):
        if s[i] == '(':
            cnt += 1
        else:
            cnt -= 1
        if cnt < 0:
            break
        maxicnt = max(maxicnt, cnt)
    if cnt == 0:
        ans += maxicnt * p
        ans %= mod
print(ans % mod)
0