結果

問題 No.2791 Beginner Contest
ユーザー vwxyzvwxyz
提出日時 2024-07-01 06:01:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 139 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-07-01 06:01:07
合計ジャッジ時間 1,693 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 43 ms
11,904 KB
testcase_03 AC 33 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 57 ms
13,184 KB
testcase_07 AC 35 ms
11,264 KB
testcase_08 AC 35 ms
11,136 KB
testcase_09 AC 69 ms
13,952 KB
testcase_10 AC 68 ms
14,080 KB
testcase_11 RE -
testcase_12 AC 73 ms
14,464 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
dp=[0]*(N+1)
mod=998244353
dp[0]=1
for i in range(1,N+1):
    dp[i]=(dp[i-1]+dp[i-K])%mod
ans=dp[N]
print(ans)
0