結果

問題 No.2872 Depth of the Parentheses
ユーザー nikoro256nikoro256
提出日時 2024-09-06 22:20:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 998 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 63,704 KB
最終ジャッジ日時 2024-09-06 22:21:23
合計ジャッジ時間 9,473 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,088 KB
testcase_01 AC 34 ms
53,940 KB
testcase_02 AC 35 ms
52,548 KB
testcase_03 AC 35 ms
53,288 KB
testcase_04 AC 34 ms
53,844 KB
testcase_05 AC 33 ms
53,196 KB
testcase_06 AC 35 ms
53,356 KB
testcase_07 AC 44 ms
63,356 KB
testcase_08 AC 33 ms
53,580 KB
testcase_09 AC 33 ms
53,632 KB
testcase_10 AC 44 ms
62,844 KB
testcase_11 AC 41 ms
61,248 KB
testcase_12 AC 61 ms
61,680 KB
testcase_13 AC 39 ms
61,240 KB
testcase_14 AC 34 ms
53,936 KB
testcase_15 AC 32 ms
53,416 KB
testcase_16 AC 46 ms
63,704 KB
testcase_17 AC 38 ms
53,824 KB
testcase_18 AC 44 ms
62,792 KB
testcase_19 AC 34 ms
52,960 KB
testcase_20 AC 43 ms
63,072 KB
testcase_21 AC 33 ms
53,484 KB
testcase_22 AC 42 ms
63,660 KB
evil_01.txt MLE -
evil_02.txt MLE -
evil_03.txt MLE -
evil_04.txt MLE -
evil_05.txt MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def extgcd(a, b):
    if b:
        d, y, x = extgcd(b, a % b)
        y -= (a // b) * x
        return d, x, y
    return a, 1, 0


# 以下modinv
def mod_inv(a, m):
    g, x, y = extgcd(a, m)

    if g != 1:
        raise Exception()

    if x < 0:
        x += m

    return x


x, K = map(int, input().split())
p = 998244353
"""
dp[i個目まで選んだ][深さj][最大の深さ]
"""
inv = x*mod_inv(100, p)%p
inv2=(100-x)*mod_inv(100,p)%p
dp = [[[0 for _ in range(K + 1)] for _ in range(K + 1)] for _ in range(2 * K + 1)]
dp[0][0][0]=1
for i in range(2 * K):
    for j in range(K + 1):
        for k in range(K + 1):
            # (を選ぶ  
            if j < K:
                dp[i + 1][j + 1][max(j + 1, k)] += dp[i][j][k] * inv
                dp[i + 1][j + 1][max(j + 1, k)] %= p
            if j != 0:
                dp[i + 1][j - 1][k] += dp[i][j][k] * inv2
                dp[i + 1][j - 1][k] %= p
ans = 0
for i in range(K + 1):
    ans += dp[-1][0][i] * i
    ans%=p
print(ans)
0