結果

問題 No.2530 Yellow Cards
ユーザー nikoro256nikoro256
提出日時 2023-11-03 23:27:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,237 ms / 2,000 ms
コード長 711 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 272,468 KB
最終ジャッジ日時 2024-09-25 21:31:01
合計ジャッジ時間 14,530 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,084 KB
testcase_01 AC 33 ms
53,896 KB
testcase_02 AC 399 ms
272,324 KB
testcase_03 AC 94 ms
90,652 KB
testcase_04 AC 34 ms
52,224 KB
testcase_05 AC 393 ms
272,280 KB
testcase_06 AC 34 ms
52,480 KB
testcase_07 AC 1,237 ms
272,128 KB
testcase_08 AC 1,088 ms
272,384 KB
testcase_09 AC 1,209 ms
272,000 KB
testcase_10 AC 1,124 ms
271,964 KB
testcase_11 AC 951 ms
271,616 KB
testcase_12 AC 1,207 ms
272,468 KB
testcase_13 AC 1,196 ms
271,748 KB
testcase_14 AC 1,104 ms
261,132 KB
testcase_15 AC 777 ms
225,408 KB
testcase_16 AC 640 ms
173,696 KB
testcase_17 AC 1,110 ms
255,744 KB
testcase_18 AC 269 ms
112,768 KB
testcase_19 AC 86 ms
82,600 KB
testcase_20 AC 369 ms
174,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def extgcd(a, b):
    if b:
        d, y, x = extgcd(b, a % b)
        y -= (a // b) * x
        return d, x, y
    return a, 1, 0

#以下modinv
def mod_inv(a, m):
    g, x, y = extgcd(a, m)

    if g != 1:
        raise Exception()

    if x < 0:
        x += m

    return x

N,K=map(int,input().split())
dp=[[0 for _ in range(K+1)] for _ in range(K+1)]
#dp[イエローカード提示数][人が抜けた数]
dp[0][0]=1
p=998244353
inv=mod_inv(N,p)
for i in range(K):
    for j in range(i//2+1):
        dp[i+1][j]+=dp[i][j]*inv*(N-(i-j*2))%p
        dp[i+1][j]%=p
        dp[i+1][j+1]+=dp[i][j]*inv*(i-j*2)%p
        dp[i+1][j+1]%=p
ans=0
for j in range(K+1):
    ans+=(N+j)*dp[-1][j]
    ans%=p
print(ans)
0