結果

問題 No.2791 Beginner Contest
ユーザー moon17moon17
提出日時 2024-06-22 14:24:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 144 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 60,608 KB
最終ジャッジ日時 2024-06-22 14:24:46
合計ジャッジ時間 2,040 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,964 KB
testcase_01 AC 38 ms
51,812 KB
testcase_02 AC 41 ms
58,900 KB
testcase_03 AC 36 ms
53,292 KB
testcase_04 AC 37 ms
51,944 KB
testcase_05 AC 36 ms
53,100 KB
testcase_06 AC 43 ms
59,976 KB
testcase_07 AC 43 ms
59,012 KB
testcase_08 AC 45 ms
59,504 KB
testcase_09 AC 43 ms
59,608 KB
testcase_10 AC 45 ms
59,988 KB
testcase_11 AC 43 ms
60,184 KB
testcase_12 AC 44 ms
60,092 KB
testcase_13 AC 42 ms
59,176 KB
testcase_14 AC 41 ms
59,608 KB
testcase_15 AC 44 ms
60,248 KB
testcase_16 AC 37 ms
52,608 KB
testcase_17 AC 38 ms
52,820 KB
testcase_18 AC 43 ms
60,608 KB
testcase_19 AC 43 ms
60,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
M=998244353
dp=[1]+[0]*n
for i in range(1,n+1):
	if i-k>=0:
		dp[i]+=dp[i-k]
	dp[i]+=dp[i-1]
	dp[i]%=M
print(dp[n])
0