結果

問題 No.2530 Yellow Cards
ユーザー titiatitia
提出日時 2023-11-06 01:59:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 302 ms / 2,000 ms
コード長 626 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 62,208 KB
最終ジャッジ日時 2024-09-25 22:58:00
合計ジャッジ時間 4,953 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 134 ms
61,312 KB
testcase_03 AC 67 ms
61,824 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 133 ms
61,440 KB
testcase_06 AC 46 ms
58,496 KB
testcase_07 AC 302 ms
61,824 KB
testcase_08 AC 302 ms
61,824 KB
testcase_09 AC 302 ms
61,824 KB
testcase_10 AC 302 ms
62,080 KB
testcase_11 AC 302 ms
62,080 KB
testcase_12 AC 302 ms
62,208 KB
testcase_13 AC 300 ms
61,824 KB
testcase_14 AC 264 ms
61,952 KB
testcase_15 AC 208 ms
61,952 KB
testcase_16 AC 175 ms
61,952 KB
testcase_17 AC 267 ms
61,824 KB
testcase_18 AC 109 ms
61,696 KB
testcase_19 AC 66 ms
61,824 KB
testcase_20 AC 121 ms
62,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,K=map(int,input().split())
mod=998244353

DP=[0]*(N+K)
DP[0]=1

INV=pow(N,-1,mod)

for i in range(K):
    for j in range(N+K-2,-1,-1):
        if DP[j]==0:
            continue
        # 今まででたカードがi枚
        # yellow 二枚がj人
        # yellow一枚は
        one=i-j*2

        # one/Nで一人増え、それ以外では増えない
        DP[j+1]+=DP[j]*one%mod*INV%mod
        DP[j]=DP[j]*(1-one*INV%mod)%mod
        DP[j]%=mod
        DP[j+1]%=mod
        

ANS=0
for i in range(N+K-1):
    ANS+=DP[i]*(i+N)
    ANS%=mod

print(ANS%mod)
        
        
0