結果

問題 No.2530 Yellow Cards
ユーザー shobonvipshobonvip
提出日時 2023-11-02 04:26:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 826 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 272,000 KB
最終ジャッジ日時 2024-09-25 18:04:43
合計ジャッジ時間 9,662 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 34 ms
51,712 KB
testcase_02 AC 43 ms
61,312 KB
testcase_03 AC 50 ms
63,232 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 AC 45 ms
61,312 KB
testcase_06 AC 42 ms
59,264 KB
testcase_07 AC 800 ms
272,000 KB
testcase_08 AC 810 ms
271,744 KB
testcase_09 AC 826 ms
271,624 KB
testcase_10 AC 813 ms
271,360 KB
testcase_11 AC 820 ms
271,232 KB
testcase_12 AC 821 ms
271,744 KB
testcase_13 AC 818 ms
271,232 KB
testcase_14 AC 591 ms
207,232 KB
testcase_15 AC 401 ms
160,896 KB
testcase_16 AC 416 ms
161,024 KB
testcase_17 AC 641 ms
225,152 KB
testcase_18 AC 295 ms
133,888 KB
testcase_19 AC 118 ms
89,856 KB
testcase_20 AC 135 ms
91,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n, k = map(int,input().split())
ans = n
ninv = pow(n, mod-2, mod)

dp = [[0] * (n+1) for i in range(k+1)]
dp[0][0] = 1
for i in range(k):
	for j in range(n+1):
		if j > 0:
			dp[i+1][j-1] += j * ninv % mod * dp[i][j]
			dp[i+1][j-1] %= mod
			ans += j * ninv % mod * dp[i][j] % mod
		if j < n:
			dp[i+1][j+1] += (n-j) * ninv % mod * dp[i][j]
			dp[i+1][j+1] %= mod

ans %= mod
print(ans)
0