結果

問題 No.2530 Yellow Cards
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2023-11-03 22:47:40
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 560 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 100,864 KB
最終ジャッジ日時 2024-09-25 21:12:06
合計ジャッジ時間 22,793 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,376 KB
testcase_01 AC 43 ms
53,376 KB
testcase_02 AC 95 ms
76,964 KB
testcase_03 AC 80 ms
76,928 KB
testcase_04 AC 43 ms
53,248 KB
testcase_05 AC 84 ms
76,980 KB
testcase_06 AC 56 ms
63,872 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 1,524 ms
88,576 KB
testcase_15 AC 1,025 ms
82,560 KB
testcase_16 AC 1,027 ms
83,840 KB
testcase_17 AC 1,665 ms
92,160 KB
testcase_18 AC 691 ms
81,408 KB
testcase_19 AC 229 ms
77,568 KB
testcase_20 AC 305 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from copy import deepcopy
N, K = map(int, input().split())
mod = 998244353
iv = pow(N, -1, mod)
dp = [0] * (N + 1)
dp[0] = 1
for _ in range(K) :
    dp2 = [0] * (N + 1)
    for i in range(N + 1) :
        p = (i * iv) % mod
        if i :
            dp2[i - 1] += dp[i] * p
            dp2[i - 1] %= mod
        if N - i :
            q = (1 - p + mod) % mod
            dp2[i + 1] += dp[i] * q
            dp2[i + 1] %= mod
    dp = deepcopy(dp2)
ans = N
for i in range(N + 1) :
    r = (K - i) // 2
    ans += dp[i] * r
    ans %= mod
print(ans)
0