結果

問題 No.2530 Yellow Cards
ユーザー timitimi
提出日時 2024-02-13 13:38:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,774 ms / 2,000 ms
コード長 1,073 bytes
コンパイル時間 554 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 99,088 KB
最終ジャッジ日時 2024-09-28 18:21:32
合計ジャッジ時間 19,726 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
55,256 KB
testcase_01 AC 34 ms
54,752 KB
testcase_02 AC 47 ms
70,768 KB
testcase_03 AC 57 ms
73,648 KB
testcase_04 AC 37 ms
53,856 KB
testcase_05 AC 47 ms
70,284 KB
testcase_06 AC 35 ms
55,696 KB
testcase_07 AC 1,768 ms
98,952 KB
testcase_08 AC 1,683 ms
97,400 KB
testcase_09 AC 1,768 ms
98,788 KB
testcase_10 AC 1,757 ms
98,460 KB
testcase_11 AC 1,519 ms
96,364 KB
testcase_12 AC 1,741 ms
99,088 KB
testcase_13 AC 1,774 ms
98,992 KB
testcase_14 AC 1,547 ms
93,960 KB
testcase_15 AC 1,104 ms
86,540 KB
testcase_16 AC 905 ms
84,676 KB
testcase_17 AC 1,575 ms
94,848 KB
testcase_18 AC 391 ms
79,132 KB
testcase_19 AC 129 ms
77,232 KB
testcase_20 AC 373 ms
77,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353
N,K=map(int, input().split())
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
        
def f(x,y):
  return x*10000+y
def ff(z):
  x,y=z//10000,z%10000
  return x,y
  
gt=modinv(N,mod)
from collections import deque
d=deque()
d.append(0)
D={}
D[0]=1
for i in range(K):
  nd=deque();DD={}
  while d:
    dd=d.popleft()
    r,y=ff(dd)
    p=N-y
    c=D[f(r,y)]
    if y!=0:
      nex=f(r+1,y-1)
      a=(y*gt*c)%mod
      if nex not in DD:
        DD[nex]=0
        nd.append(nex)
      DD[nex]+=a
      DD[nex]%=mod 
    if p!=0:
      a=(p*gt*c)%mod
      nex=f(r,y+1)
      if nex not in DD:
        DD[nex]=0
        nd.append(nex)
      DD[nex]+=a
      DD[nex]%=mod
  d=nd 
  D=DD
ans=0
for d in D:
  r,y=ff(d)
  p=N-y 
  c=r+y+p
  ans+=c*D[d]
  ans%=mod
print(ans)


0