結果

問題 No.2872 Depth of the Parentheses
ユーザー miya145592miya145592
提出日時 2024-09-06 22:15:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 604 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 151,900 KB
最終ジャッジ日時 2024-09-06 22:17:00
合計ジャッジ時間 17,572 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
59,828 KB
testcase_01 AC 43 ms
137,316 KB
testcase_02 AC 33 ms
59,624 KB
testcase_03 AC 46 ms
140,216 KB
testcase_04 AC 50 ms
140,616 KB
testcase_05 AC 34 ms
59,932 KB
testcase_06 AC 33 ms
60,044 KB
testcase_07 AC 136 ms
151,900 KB
testcase_08 AC 44 ms
69,660 KB
testcase_09 AC 35 ms
52,944 KB
testcase_10 AC 80 ms
76,016 KB
testcase_11 AC 52 ms
67,104 KB
testcase_12 AC 51 ms
67,720 KB
testcase_13 AC 52 ms
68,388 KB
testcase_14 AC 48 ms
65,360 KB
testcase_15 AC 43 ms
62,672 KB
testcase_16 AC 124 ms
76,096 KB
testcase_17 AC 47 ms
63,936 KB
testcase_18 AC 125 ms
75,892 KB
testcase_19 AC 32 ms
53,248 KB
testcase_20 AC 117 ms
75,948 KB
testcase_21 AC 33 ms
53,336 KB
testcase_22 AC 114 ms
75,832 KB
evil_01.txt TLE -
evil_02.txt TLE -
evil_03.txt TLE -
evil_04.txt TLE -
evil_05.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
MOD = 998244353
x, K = map(int, input().split())
inv = pow(pow(100, 2*K, MOD), MOD-2, MOD)
ans = 0
for i in range(1<<(2*K)):
    cnt = 0
    ma = 0
    s = 0
    flag = True
    for j in range(2*K):
        if (i>>j)&1:
            cnt += 1
            s += 1
        else:
            cnt -= 1
        if cnt<0:
            flag = False
            break
        ma = max(ma, cnt)
    if flag==False:
        continue
    if cnt!=0:
        continue
    ans += ma * pow(x, s, MOD) % MOD * pow(100-x, 2*K-s, MOD) % MOD * inv % MOD
    ans %= MOD
print(ans)
    
    
0