結果

問題 No.2872 Depth of the Parentheses
ユーザー PNJPNJ
提出日時 2024-09-06 22:29:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 587 bytes
コンパイル時間 555 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 63,712 KB
最終ジャッジ日時 2024-09-06 22:30:01
合計ジャッジ時間 11,114 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,668 KB
testcase_01 AC 39 ms
53,300 KB
testcase_02 AC 38 ms
53,604 KB
testcase_03 AC 38 ms
53,612 KB
testcase_04 AC 40 ms
54,348 KB
testcase_05 AC 38 ms
53,772 KB
testcase_06 AC 38 ms
52,564 KB
testcase_07 AC 50 ms
62,288 KB
testcase_08 AC 39 ms
53,548 KB
testcase_09 AC 39 ms
52,600 KB
testcase_10 AC 49 ms
62,788 KB
testcase_11 AC 46 ms
60,828 KB
testcase_12 AC 46 ms
61,200 KB
testcase_13 AC 46 ms
60,972 KB
testcase_14 AC 39 ms
53,320 KB
testcase_15 AC 40 ms
52,744 KB
testcase_16 AC 50 ms
63,560 KB
testcase_17 AC 39 ms
54,608 KB
testcase_18 AC 49 ms
63,672 KB
testcase_19 AC 38 ms
53,092 KB
testcase_20 AC 48 ms
63,712 KB
testcase_21 AC 37 ms
53,684 KB
testcase_22 AC 52 ms
62,500 KB
evil_01.txt MLE -
evil_02.txt MLE -
evil_03.txt MLE -
evil_04.txt MLE -
evil_05.txt MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
x,K = map(int,input().split())
p,q = x * pow(100,-1,mod) % mod,(100 - x) * pow(100,-1,mod) % mod

dp = [[[0 for m in range(K + 1)] for c in range(K + 1)] for n in range(2 * K + 1)]
dp[0][0][0] = 1

for n in range(2 * K):
  for c in range(K + 1):
    for m in range(K + 1):
      if c > 0:
        dp[n + 1][c - 1][m] = (dp[n + 1][c - 1][m] + dp[n][c][m] * q) % mod
      if c < K:
        dp[n + 1][c + 1][max(c + 1,m)] = (dp[n + 1][c + 1][max(c + 1,m)] + dp[n][c][m] * p) % mod

ans = 0
for m in range(1,K + 1):
  ans += m * dp[2 * K][0][m] % mod
  ans %= mod
print(ans)
0