結果

問題 No.2791 Beginner Contest
ユーザー navel_tosnavel_tos
提出日時 2024-06-21 22:58:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 234 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 62,740 KB
最終ジャッジ日時 2024-06-21 22:58:27
合計ジャッジ時間 2,139 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 36 ms
52,644 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 42 ms
61,536 KB
testcase_12 WA -
testcase_13 AC 42 ms
60,356 KB
testcase_14 AC 52 ms
59,188 KB
testcase_15 AC 43 ms
61,584 KB
testcase_16 AC 36 ms
52,824 KB
testcase_17 AC 37 ms
52,224 KB
testcase_18 AC 41 ms
62,408 KB
testcase_19 AC 41 ms
61,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
MOD = 998244353
DP = [1] + [0] * N
C = [0] * (N + 2)
for i in range(N + 1):
	Lt = i - K
	if Lt >= 0:
		DP[i] = C[Lt] - C[0]
		DP[i] %= MOD
	C[i + 1] = C[i] + DP[i]
	C[i + 1] %= MOD
print(sum(DP) % MOD)
0