結果

問題 No.2530 Yellow Cards
ユーザー titiatitia
提出日時 2023-11-06 01:58:21
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 549 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 110,464 KB
最終ジャッジ日時 2024-09-25 22:57:54
合計ジャッジ時間 24,435 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,456 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 285 ms
61,952 KB
testcase_03 AC 88 ms
61,312 KB
testcase_04 AC 37 ms
51,584 KB
testcase_05 AC 253 ms
61,696 KB
testcase_06 AC 42 ms
58,880 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 1,731 ms
102,144 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 1,989 ms
100,468 KB
testcase_15 AC 1,344 ms
89,344 KB
testcase_16 AC 1,141 ms
86,784 KB
testcase_17 AC 1,996 ms
101,756 KB
testcase_18 AC 530 ms
79,744 KB
testcase_19 AC 147 ms
76,160 KB
testcase_20 AC 582 ms
79,488 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):
        # 今まででたカードがi枚
        # yellow 二枚がj人
        # yellow一枚は
        one=i-j*2

        # one/Nで一人増え、それ以外では増えない
        DP[j+1]+=DP[j]*one*INV
        DP[j]=DP[j]*(1-one*INV)
        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