結果

問題 No.2833 Count Taiko Results
ユーザー 沙耶花沙耶花
提出日時 2024-08-02 22:38:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 825 bytes
コンパイル時間 4,241 ms
コンパイル使用メモリ 265,440 KB
実行使用メモリ 8,808 KB
最終ジャッジ日時 2024-08-02 22:38:32
合計ジャッジ時間 10,492 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 RE -
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 RE -
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 166 ms
8,196 KB
testcase_35 AC 108 ms
6,944 KB
testcase_36 AC 126 ms
7,384 KB
testcase_37 AC 183 ms
8,648 KB
testcase_38 AC 86 ms
6,944 KB
testcase_39 AC 125 ms
7,584 KB
testcase_40 AC 151 ms
7,772 KB
testcase_41 AC 165 ms
8,288 KB
testcase_42 AC 192 ms
8,264 KB
testcase_43 AC 167 ms
7,968 KB
testcase_44 AC 178 ms
8,784 KB
testcase_45 AC 142 ms
7,660 KB
testcase_46 AC 119 ms
6,940 KB
testcase_47 AC 138 ms
7,368 KB
testcase_48 AC 108 ms
6,940 KB
testcase_49 AC 181 ms
8,684 KB
testcase_50 AC 214 ms
8,676 KB
testcase_51 AC 184 ms
8,676 KB
testcase_52 AC 165 ms
8,676 KB
testcase_53 AC 198 ms
8,652 KB
testcase_54 RE -
testcase_55 AC 158 ms
8,804 KB
testcase_56 AC 152 ms
8,684 KB
testcase_57 AC 152 ms
8,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000001

mint sol(int N,int K,vector<mint> a,vector<mint> b){
	vector<mint> dp(N+2,0);
	dp[0] = 1;
	b.push_back(1);
	a.push_back(0);
	N++;
	mint sum = dp[0];
	mint mul = 1;
	rep(i,N){
		dp[i+1] = sum * b[i];
		if(i-K>=0){
			sum -= dp[i-K] * mul;
			mul /= a[i-K];
		}
		sum *= a[i];
		sum += dp[i+1];
		mul *= a[i];
	}
	return dp.back();
}
int main(){
	int N,K;
	cin>>N>>K;
	vector<mint> a(N),b(N);
	rep(i,N){
		int t;
		cin>>t;
		a[i] = t;
	}
	rep(i,N){
		int t;
		cin>>t;
		b[i] = t;		
	}
	
	mint ans = sol(N,K,a,b);
	ans -= sol(N,K-1,a,b);
	cout<<ans.val()<<endl;
    return 0;
}
0