結果

問題 No.2791 Beginner Contest
ユーザー Nzt3Nzt3
提出日時 2024-06-21 22:56:18
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 492 bytes
コンパイル時間 2,287 ms
コンパイル使用メモリ 203,184 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-21 22:56:22
合計ジャッジ時間 3,691 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
constexpr int MOD=998244353;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define replr(i,l,r) for(int i=(l);i<(int)(r);i++)

void ch(ll &a,ll b){
  a=(a+b)%MOD;
}

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N,K;
  cin>>N>>K;
  vector dp(N+1,0ll);
  dp[0]=1;
  ll s=0;
  for(int i=1;i<=N;i++){
    if(i-K>=0)ch(s,dp[i-K]);
    ch(dp[i],s);
  }
  ll ans=0;
  for(ll i:dp)ch(ans,i);
  cout<<ans<<'\n';
}
0