結果

問題 No.2369 Some Products
ユーザー shobonvipshobonvip
提出日時 2023-06-30 03:26:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 433 ms / 2,500 ms
コード長 897 bytes
コンパイル時間 3,766 ms
コンパイル使用メモリ 267,132 KB
実行使用メモリ 199,168 KB
最終ジャッジ日時 2024-07-07 08:27:13
合計ジャッジ時間 6,965 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 433 ms
199,168 KB
testcase_03 AC 425 ms
199,168 KB
testcase_04 AC 426 ms
199,168 KB
testcase_05 AC 31 ms
15,488 KB
testcase_06 AC 383 ms
199,040 KB
testcase_07 AC 29 ms
16,768 KB
testcase_08 AC 72 ms
38,400 KB
testcase_09 AC 25 ms
12,160 KB
testcase_10 AC 143 ms
71,424 KB
testcase_11 AC 289 ms
150,912 KB
testcase_12 AC 16 ms
9,088 KB
testcase_13 AC 178 ms
88,192 KB
testcase_14 AC 205 ms
104,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;

typedef modint998244353 mint;
typedef long long ll;

int main(){
	int n; cin >> n;
	vector<mint> p(n);
	for (int i=0; i<n; i++){
		int x; cin >> x;
		p[i] = x;
	}

	vector<vector<mint>> f(n+1, vector<mint>(n+1));
	vector<vector<mint>> g(n+1, vector<mint>(n+1));
	f[0][0] = 1;
	g[0][0] = 1;
	for (int i=0; i<n; i++){
		for (int j=0; j<n+1; j++){
			f[i+1][j] += f[i][j];
		}
		for (int j=1; j<n+1; j++){
			f[i+1][j] += f[i][j-1] * p[i];
		}
	}
	for (int i=0; i<n; i++){
		for (int j=0; j<n+1; j++){
			g[i+1][j] = g[i][j];
		}
		for (int j=1; j<n+1; j++){
			g[i+1][j] += g[i+1][j-1] * (-p[i]);
		}
	}
	int q; cin >> q;
	for (int i=0; i<q; i++){
		int a, b, k; cin >> a >> b >> k;
		a--;
		mint ans = 0;
		for (int j=0; j<k+1; j++){
			ans += f[b][j] * g[a][k-j];
		}
		cout << ans.val() << "\n";
	}
	
}
0