結果

問題 No.2872 Depth of the Parentheses
ユーザー titiatitia
提出日時 2024-09-08 03:43:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 630 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 61,388 KB
最終ジャッジ日時 2024-09-08 03:43:43
合計ジャッジ時間 9,877 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,236 KB
testcase_01 AC 44 ms
59,060 KB
testcase_02 AC 40 ms
52,868 KB
testcase_03 AC 43 ms
58,040 KB
testcase_04 AC 45 ms
59,140 KB
testcase_05 AC 40 ms
52,248 KB
testcase_06 AC 39 ms
52,856 KB
testcase_07 AC 45 ms
60,384 KB
testcase_08 AC 44 ms
59,060 KB
testcase_09 AC 40 ms
52,564 KB
testcase_10 AC 47 ms
60,628 KB
testcase_11 AC 44 ms
60,624 KB
testcase_12 AC 44 ms
59,068 KB
testcase_13 AC 44 ms
59,684 KB
testcase_14 AC 49 ms
58,972 KB
testcase_15 AC 44 ms
59,292 KB
testcase_16 AC 45 ms
60,756 KB
testcase_17 AC 41 ms
58,984 KB
testcase_18 AC 46 ms
61,388 KB
testcase_19 AC 39 ms
52,856 KB
testcase_20 AC 43 ms
60,164 KB
testcase_21 AC 38 ms
52,892 KB
testcase_22 AC 44 ms
59,912 KB
evil_01.txt MLE -
evil_02.txt MLE -
evil_03.txt MLE -
evil_04.txt MLE -
evil_05.txt MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

mod=998244353

PLUS=x*pow(100,mod-2,mod)%mod
MINUS=(100-x)*pow(100,mod-2,mod)%mod

DP=[[0]*(2*K+3) for i in range(2*K+3)]
DP[0][0]=1

for tests in range(2*K):
    NDP=[[0]*(2*K+3) for i in range(2*K+3)]
    
    for i in range(2*K+3):
        for j in range(2*K+3):
            now=DP[i][j]
            if now==0:
                continue

            NDP[i+1][max(j,i+1)]+=DP[i][j]*PLUS%mod
            if i-1>=0:
                NDP[i-1][j]+=DP[i][j]*MINUS%mod
    DP=NDP
            
ANS=0
for i in range(2*K+3):
    ANS+=DP[0][i]*i
    ANS%=mod

print(ANS)
0