結果

問題 No.2530 Yellow Cards
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2023-10-24 00:10:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 711 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 272,384 KB
最終ジャッジ日時 2024-09-22 17:16:38
合計ジャッジ時間 8,469 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,164 KB
testcase_01 AC 39 ms
52,928 KB
testcase_02 AC 49 ms
66,256 KB
testcase_03 AC 52 ms
65,644 KB
testcase_04 AC 38 ms
54,004 KB
testcase_05 AC 49 ms
66,828 KB
testcase_06 AC 47 ms
60,684 KB
testcase_07 AC 701 ms
272,328 KB
testcase_08 AC 700 ms
272,084 KB
testcase_09 AC 698 ms
272,384 KB
testcase_10 AC 704 ms
271,872 KB
testcase_11 AC 711 ms
271,616 KB
testcase_12 AC 699 ms
271,744 KB
testcase_13 AC 698 ms
271,744 KB
testcase_14 AC 500 ms
203,068 KB
testcase_15 AC 347 ms
157,056 KB
testcase_16 AC 346 ms
157,656 KB
testcase_17 AC 546 ms
225,524 KB
testcase_18 AC 253 ms
133,760 KB
testcase_19 AC 106 ms
90,016 KB
testcase_20 AC 115 ms
89,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
dp = [[0 for _ in range(N + 1)] for _ in range(K + 1)]
dp[0][0] = 1

mod = 998244353

for i in range(K):
    for j in range(N + 1):
        if j > 0:
            dp[i + 1][j - 1] = (dp[i + 1][j - 1] + dp[i][j] * j) % mod
        if j < N:
            dp[i + 1][j + 1] = (dp[i + 1][j + 1] + dp[i][j] * (N - j)) % mod

div = pow(pow(N, K, mod), mod - 2, mod)
ans = 0
for i in range(N + 1):
    ans = (ans + ((K - i) // 2 + N) * dp[K][i]) % mod
print((ans * div) % mod)
0