結果

問題 No.2872 Depth of the Parentheses
ユーザー ra5anchorra5anchor
提出日時 2024-09-06 22:23:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 671 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 76,448 KB
最終ジャッジ日時 2024-09-06 22:24:18
合計ジャッジ時間 3,410 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,724 KB
testcase_01 AC 46 ms
63,532 KB
testcase_02 AC 34 ms
53,596 KB
testcase_03 AC 52 ms
65,608 KB
testcase_04 AC 60 ms
68,532 KB
testcase_05 AC 34 ms
52,872 KB
testcase_06 AC 34 ms
52,552 KB
testcase_07 AC 214 ms
76,448 KB
testcase_08 AC 45 ms
62,816 KB
testcase_09 AC 33 ms
53,148 KB
testcase_10 AC 94 ms
76,380 KB
testcase_11 AC 61 ms
73,476 KB
testcase_12 AC 63 ms
74,028 KB
testcase_13 AC 64 ms
73,480 KB
testcase_14 AC 60 ms
68,008 KB
testcase_15 AC 46 ms
63,608 KB
testcase_16 AC 222 ms
76,092 KB
testcase_17 AC 54 ms
66,224 KB
testcase_18 AC 225 ms
76,360 KB
testcase_19 AC 32 ms
52,484 KB
testcase_20 AC 229 ms
76,216 KB
testcase_21 AC 34 ms
52,336 KB
testcase_22 AC 229 ms
75,980 KB
evil_01.txt WA -
evil_02.txt WA -
evil_03.txt WA -
evil_04.txt WA -
evil_05.txt WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

x, K = map(int, input().split())
if K > 10:
    exit()
MOD = 998244353

e = 0
for bit in range(1 << 2*K):
    L = []
    D = 0
    cnt0, cnt1 = 0, 0
    for j in range(2*K):
        if (bit >> j) & 1:
            cnt1 += 1
            L.append('(')
            D = max(D, len(L))
        else:
            cnt0 += 1
            if len(L) == 0:
                D = 0
                break
            else:
                L.pop()
    if len(L) != 0:
        D = 0
    else:
        e_ = pow(x, cnt1, MOD) * pow((100-x), cnt0, MOD) * D % MOD
        e += e_
        # print(bit, D)

einv0 = pow(100, 2*K, MOD)
einv = pow(einv0, MOD-2, MOD)
e *= einv
e = e % MOD
print(e)

0