結果

問題 No.2872 Depth of the Parentheses
ユーザー ニックネームニックネーム
提出日時 2024-09-06 22:06:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 152,036 KB
最終ジャッジ日時 2024-09-06 22:06:22
合計ジャッジ時間 17,559 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
59,884 KB
testcase_01 AC 44 ms
137,556 KB
testcase_02 AC 36 ms
59,908 KB
testcase_03 AC 45 ms
72,356 KB
testcase_04 AC 47 ms
71,344 KB
testcase_05 AC 35 ms
129,004 KB
testcase_06 AC 35 ms
59,964 KB
testcase_07 AC 134 ms
152,036 KB
testcase_08 AC 45 ms
69,388 KB
testcase_09 AC 34 ms
52,404 KB
testcase_10 AC 75 ms
75,828 KB
testcase_11 AC 51 ms
67,552 KB
testcase_12 AC 50 ms
68,632 KB
testcase_13 AC 50 ms
68,068 KB
testcase_14 AC 46 ms
64,884 KB
testcase_15 AC 42 ms
61,940 KB
testcase_16 AC 139 ms
76,076 KB
testcase_17 AC 50 ms
64,836 KB
testcase_18 AC 133 ms
76,220 KB
testcase_19 AC 33 ms
52,344 KB
testcase_20 AC 118 ms
75,876 KB
testcase_21 AC 32 ms
52,668 KB
testcase_22 AC 120 ms
75,952 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())
z = 998244353; p = 0
for s in range(1<<2*k):
    c = d = 0; f = 1; m = s.bit_count()
    for i in range(2*k):
        if s>>i&1: c += 1; d = max(d,c)
        elif c: c -= 1
        else: f = 0; break
    if f and c==0: p += pow(x,m,z)*pow(100-x,2*k-m,z)%z*d
print(p*pow(100,-2*k,z)%z)
0