結果

問題 No.2530 Yellow Cards
ユーザー ニックネームニックネーム
提出日時 2023-11-03 22:43:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,366 ms / 2,000 ms
コード長 326 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 81,916 KB
実行使用メモリ 82,968 KB
最終ジャッジ日時 2024-09-25 21:08:29
合計ジャッジ時間 14,781 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,216 KB
testcase_01 AC 35 ms
52,988 KB
testcase_02 AC 43 ms
62,164 KB
testcase_03 AC 45 ms
62,032 KB
testcase_04 AC 36 ms
52,624 KB
testcase_05 AC 41 ms
60,260 KB
testcase_06 AC 41 ms
61,052 KB
testcase_07 AC 1,366 ms
82,932 KB
testcase_08 AC 1,175 ms
82,420 KB
testcase_09 AC 1,333 ms
82,884 KB
testcase_10 AC 1,232 ms
82,268 KB
testcase_11 AC 1,032 ms
80,628 KB
testcase_12 AC 1,325 ms
82,948 KB
testcase_13 AC 1,314 ms
82,968 KB
testcase_14 AC 1,119 ms
80,108 KB
testcase_15 AC 723 ms
77,584 KB
testcase_16 AC 681 ms
77,904 KB
testcase_17 AC 1,162 ms
80,824 KB
testcase_18 AC 313 ms
77,128 KB
testcase_19 AC 101 ms
75,792 KB
testcase_20 AC 246 ms
75,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
mod = 998244353; d = pow(n,-1,mod); dp = [1]+[0]*n; e = 0
for _ in range(k):
    eq = [0]*(n+1)
    for i in range(n+1):
        if i>0: eq[i-1] = (eq[i-1]+dp[i]*i*d)%mod
        if i<n: eq[i+1] = (eq[i+1]+dp[i]*(n-i)*d)%mod
    dp = eq
for i,v in enumerate(dp): e += ((k-i)//2+n)*v
print(e%mod)
0