結果

問題 No.2791 Beginner Contest
ユーザー 乾麺乾麺
提出日時 2024-06-21 21:53:41
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 7 ms / 2,000 ms
コード長 720 bytes
コンパイル時間 3,782 ms
コンパイル使用メモリ 275,556 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-21 21:53:47
合計ジャッジ時間 4,690 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 5 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 6 ms
6,940 KB
testcase_10 AC 7 ms
6,940 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 7 ms
6,944 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 3 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _GLIBCXX_DEBUG
#include <bits/stdc++.h>
#include <atcoder/fenwicktree>
using namespace atcoder;
using namespace std;
typedef long long ll;
typedef pair<ll,ll> pi;
#define ALL(x) x.begin(),x.end()
#define rep(i,a,b) for(int i=a;i<b;i++)
using vi = vector<int>; 
using vvi = vector<vi>; 
using li =vector<ll>;
using lli=vector<li>;
using si =vector<char>;
using ssi =vector<si>;
const long long INF = 1e18;
const long long MOD=998244353;
//for (auto [key, val] : mp)
int main() { 
	ll n,k;cin>>n>>k;
	fenwick_tree<ll>bit(n+1);
	li dp(n+1);
	bit.add(0,1);
	dp[0]=1;
	rep(i,0,n){
		if(i+1-k<0)continue;
		else{
			dp[i+1]=bit.sum(0,i+2-k)%998244353;
			bit.add(i+1,dp[i+1]);
		}
	}
	cout<<bit.sum(0,n+1)%998244353;
}
0