結果

問題 No.2872 Depth of the Parentheses
ユーザー ikomaikoma
提出日時 2024-09-06 23:02:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 447 ms / 2,000 ms
コード長 594 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,724 KB
実行使用メモリ 152,268 KB
最終ジャッジ日時 2024-09-06 23:04:16
合計ジャッジ時間 19,175 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
59,692 KB
testcase_01 AC 46 ms
138,820 KB
testcase_02 AC 39 ms
69,540 KB
testcase_03 AC 49 ms
140,568 KB
testcase_04 AC 55 ms
79,412 KB
testcase_05 AC 35 ms
127,596 KB
testcase_06 AC 33 ms
59,008 KB
testcase_07 AC 352 ms
152,268 KB
testcase_08 AC 49 ms
72,016 KB
testcase_09 AC 41 ms
61,824 KB
testcase_10 AC 129 ms
76,064 KB
testcase_11 AC 73 ms
76,044 KB
testcase_12 AC 73 ms
76,012 KB
testcase_13 AC 77 ms
76,292 KB
testcase_14 AC 55 ms
72,908 KB
testcase_15 AC 46 ms
63,880 KB
testcase_16 AC 342 ms
76,184 KB
testcase_17 AC 48 ms
65,348 KB
testcase_18 AC 352 ms
76,296 KB
testcase_19 AC 34 ms
53,880 KB
testcase_20 AC 447 ms
76,032 KB
testcase_21 AC 34 ms
52,948 KB
testcase_22 AC 433 ms
75,940 KB
evil_01.txt TLE -
evil_02.txt TLE -
evil_03.txt TLE -
evil_04.txt TLE -
evil_05.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

x,K=map(int,input().split())
MOD=998244353
inv100 = pow(100,MOD-2,MOD)
omote = x * inv100 % MOD
ura = (100-x) * inv100 % MOD


ans = 0
def fukasa(bit):
    d = 0
    ret = 0
    for i in range(K*2):
        if (bit >> i) & 1:
            d += 1
        else:
            d -= 1
        if d < 0:return 0
        if ret < d:
            ret = d
    return ret if d == 0 else 0
for bit in range(1<<(K*2)):
    p = 1
    for i in range(K*2):
        if (bit >> i) & 1:
            p *= omote
        else:
            p *= ura
        p %= MOD
    ans += fukasa(bit) * p
    ans %= MOD

print(ans)
0