結果

問題 No.2872 Depth of the Parentheses
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-06 21:58:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 482 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 82,656 KB
実行使用メモリ 134,804 KB
最終ジャッジ日時 2024-09-06 21:58:42
合計ジャッジ時間 19,478 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
59,880 KB
testcase_01 AC 54 ms
132,820 KB
testcase_02 AC 45 ms
68,172 KB
testcase_03 AC 59 ms
134,804 KB
testcase_04 AC 66 ms
77,420 KB
testcase_05 AC 39 ms
120,044 KB
testcase_06 AC 38 ms
60,084 KB
testcase_07 AC 326 ms
83,700 KB
testcase_08 AC 55 ms
73,572 KB
testcase_09 AC 46 ms
62,024 KB
testcase_10 AC 133 ms
75,928 KB
testcase_11 AC 80 ms
72,280 KB
testcase_12 AC 77 ms
68,824 KB
testcase_13 AC 79 ms
73,076 KB
testcase_14 AC 67 ms
69,504 KB
testcase_15 AC 55 ms
66,988 KB
testcase_16 AC 326 ms
75,884 KB
testcase_17 AC 58 ms
67,476 KB
testcase_18 AC 324 ms
76,088 KB
testcase_19 AC 38 ms
52,688 KB
testcase_20 AC 482 ms
76,516 KB
testcase_21 AC 38 ms
52,308 KB
testcase_22 AC 457 ms
76,032 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())
M=998244353
a=0
for i in range(1<<(2*k)):
  p=0
  maxp=0
  minp=2*k
  for j in range(2*k):
    if (i>>j)&1:
      p+=1
    else:
      p-=1
    maxp=max(maxp,p)
    minp=min(minp,p)
  if p==0 and minp==0:
    a+=maxp*pow(x*pow(100,M-2,M),k,M)*pow((100-x)*pow(100,M-2,M),k,M)
    a%=M
print(a)
0