結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,948 KB
testcase_01 AC 39 ms
52,944 KB
testcase_02 AC 38 ms
53,468 KB
testcase_03 AC 38 ms
53,312 KB
testcase_04 AC 40 ms
52,928 KB
testcase_05 AC 39 ms
52,816 KB
testcase_06 AC 39 ms
53,060 KB
testcase_07 AC 45 ms
61,044 KB
testcase_08 AC 39 ms
52,332 KB
testcase_09 AC 38 ms
52,656 KB
testcase_10 AC 40 ms
54,148 KB
testcase_11 AC 40 ms
53,948 KB
testcase_12 AC 40 ms
53,200 KB
testcase_13 AC 39 ms
53,020 KB
testcase_14 AC 39 ms
53,488 KB
testcase_15 AC 39 ms
52,792 KB
testcase_16 AC 44 ms
59,820 KB
testcase_17 AC 39 ms
53,700 KB
testcase_18 AC 44 ms
59,636 KB
testcase_19 AC 38 ms
52,524 KB
testcase_20 AC 45 ms
60,600 KB
testcase_21 AC 38 ms
52,408 KB
testcase_22 AC 44 ms
59,588 KB
evil_01.txt MLE -
evil_02.txt MLE -
evil_03.txt MLE -
evil_04.txt MLE -
evil_05.txt MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

x, K = map(int, input().split())
mod = 998244353
pre = [[0] * (K + 1) for _ in range(K + 1)]
pre[0][0] = 1
for i in range(2 * K):
    dp = [[0] * (K + 1) for _ in range(K + 1)]
    for j in range(K + 1):
        for d in range(j, K + 1):
            if j:
                if j == d:
                    dp[j][d] += pre[j - 1][d - 1]
                    dp[j][d] += pre[j - 1][d]
                else:
                    dp[j][d] += pre[j - 1][d]
            if j != K:
                dp[j][d] += pre[j + 1][d]
            dp[j][d] %= mod
    pre, dp = dp, pre
    
ans = 0
for d in range(K + 1):
    ans += pre[0][d] * d
    ans %= mod
ans *= pow(x, K, mod) * pow(100 - x, K, mod) * pow(100, 2 * K * (mod - 2), mod) % mod
ans %= mod
print(ans)
0