結果

問題 No.2791 Beginner Contest
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2024-06-21 21:46:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 263 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 61,712 KB
最終ジャッジ日時 2024-06-21 21:46:22
合計ジャッジ時間 1,947 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,164 KB
testcase_01 AC 33 ms
52,944 KB
testcase_02 AC 41 ms
60,632 KB
testcase_03 AC 34 ms
53,256 KB
testcase_04 AC 32 ms
52,068 KB
testcase_05 AC 31 ms
52,688 KB
testcase_06 AC 41 ms
60,532 KB
testcase_07 AC 41 ms
60,032 KB
testcase_08 AC 38 ms
59,832 KB
testcase_09 AC 41 ms
61,576 KB
testcase_10 AC 41 ms
60,868 KB
testcase_11 AC 41 ms
61,712 KB
testcase_12 AC 42 ms
60,788 KB
testcase_13 AC 39 ms
60,152 KB
testcase_14 AC 39 ms
60,980 KB
testcase_15 AC 40 ms
60,096 KB
testcase_16 AC 34 ms
52,868 KB
testcase_17 AC 37 ms
52,488 KB
testcase_18 AC 46 ms
60,596 KB
testcase_19 AC 40 ms
60,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())

dp=[0 for _ in range(n+1)]
dp[0]=1
dp[1]=-1

mod=998244353

for i in range(n):
  if i+k<=n:
    dp[i+k]+=dp[i]
    dp[i+k]%=mod
  dp[i+1]+=dp[i]
  dp[i+1]%=mod
#print(dp)

ans=0
for i in range(n+1):
  ans+=dp[i]
  ans%=mod
print(ans)
0