結果

問題 No.2872 Depth of the Parentheses
ユーザー timitimi
提出日時 2024-09-06 22:15:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 868 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 54,276 KB
最終ジャッジ日時 2024-09-06 22:15:25
合計ジャッジ時間 2,005 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,468 KB
testcase_01 AC 32 ms
53,132 KB
testcase_02 AC 32 ms
52,572 KB
testcase_03 AC 38 ms
53,000 KB
testcase_04 AC 39 ms
53,256 KB
testcase_05 AC 34 ms
53,052 KB
testcase_06 AC 33 ms
52,836 KB
testcase_07 AC 34 ms
53,824 KB
testcase_08 AC 33 ms
53,220 KB
testcase_09 AC 34 ms
52,532 KB
testcase_10 AC 34 ms
53,408 KB
testcase_11 AC 34 ms
53,140 KB
testcase_12 AC 34 ms
52,680 KB
testcase_13 AC 36 ms
53,632 KB
testcase_14 AC 36 ms
53,804 KB
testcase_15 AC 34 ms
53,136 KB
testcase_16 AC 33 ms
52,892 KB
testcase_17 AC 34 ms
54,276 KB
testcase_18 AC 34 ms
53,504 KB
testcase_19 AC 33 ms
52,852 KB
testcase_20 AC 33 ms
54,220 KB
testcase_21 AC 30 ms
53,036 KB
testcase_22 AC 35 ms
53,640 KB
evil_01.txt WA -
evil_02.txt WA -
evil_03.txt WA -
evil_04.txt WA -
evil_05.txt WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

S,N=map(int,input().split())
# A=list(map(int, input().split()))
if N>10:
  exit()
mod=998244353 
D={}
D[(0,0)]=1
def xgcd(a, b):
    x0, y0, x1, y1 = 1, 0, 0, 1
    while b != 0:
        q, a, b = a // b, b, a % b
        x0, x1 = x1, x0 - q * x1
        y0, y1 = y1, y0 - q * y1
    return a, x0, y0

def modinv(a, m):
    g, x, y = xgcd(a, m)
    if g != 1:
        raise Exception('modular inverse does not exist')
    else:
        return x % m
gt=modinv(100,mod)

s=S*gt%mod
t=(100-S)*gt%mod

for i in range(2*N):
  E={}
  for x,y in D:
    d=D[(x,y)]
    if x!=0:
      xx=x-1
      if (xx,y) not in E:
        E[(xx,y)]=0
      E[(xx,y)]+=d*t 
      E[(xx,y)]%=mod 
    xx=x+1 
    y=max(xx,y)
    if (xx,y) not in E:
      E[(xx,y)]=0
    E[(xx,y)]+=d*s 
    E[(xx,y)]%=mod 
  D=E   
ans=0
for x,y in D:
  if x==0:
    ans+=y*D[(x,y)]
    ans%=mod 
print(ans)
0