結果

問題 No.1353 Limited Sequence
ユーザー Example0911Example0911
提出日時 2021-01-29 18:33:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 828 ms / 2,000 ms
コード長 828 bytes
コンパイル時間 2,218 ms
コンパイル使用メモリ 202,860 KB
実行使用メモリ 26,240 KB
最終ジャッジ日時 2024-06-27 05:18:06
合計ジャッジ時間 16,616 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 404 ms
18,944 KB
testcase_13 AC 560 ms
18,560 KB
testcase_14 AC 52 ms
7,296 KB
testcase_15 AC 212 ms
12,928 KB
testcase_16 AC 17 ms
5,376 KB
testcase_17 AC 29 ms
6,016 KB
testcase_18 AC 410 ms
18,688 KB
testcase_19 AC 542 ms
21,376 KB
testcase_20 AC 125 ms
10,240 KB
testcase_21 AC 42 ms
6,656 KB
testcase_22 AC 38 ms
6,400 KB
testcase_23 AC 435 ms
18,176 KB
testcase_24 AC 311 ms
14,848 KB
testcase_25 AC 469 ms
20,608 KB
testcase_26 AC 252 ms
13,952 KB
testcase_27 AC 171 ms
11,008 KB
testcase_28 AC 77 ms
8,320 KB
testcase_29 AC 122 ms
9,984 KB
testcase_30 AC 445 ms
16,128 KB
testcase_31 AC 243 ms
13,312 KB
testcase_32 AC 63 ms
16,128 KB
testcase_33 AC 16 ms
7,168 KB
testcase_34 AC 105 ms
23,680 KB
testcase_35 AC 37 ms
12,032 KB
testcase_36 AC 50 ms
14,592 KB
testcase_37 AC 783 ms
25,984 KB
testcase_38 AC 724 ms
25,984 KB
testcase_39 AC 755 ms
25,984 KB
testcase_40 AC 788 ms
25,984 KB
testcase_41 AC 793 ms
26,240 KB
testcase_42 AC 735 ms
25,984 KB
testcase_43 AC 828 ms
25,984 KB
testcase_44 AC 792 ms
26,112 KB
testcase_45 AC 753 ms
25,984 KB
testcase_46 AC 813 ms
25,984 KB
testcase_47 AC 137 ms
25,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

using ll = long long;
using P = pair<ll, ll>;
const ll INF = (1LL << 61);
ll mod = 998244353;
ll dp[2010][2010];
signed main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	ll N, L, R; cin >> N >> L >> R;
	vector<ll>A(N+1); for (int i = 1; i <= N; i++)cin >> A[i];
	vector<ll>sum(R + 1);
	dp[0][0] = 1;
	sum[0] = 1;
	for (int i = 1; i <= R; i++) {
		for (int j = 1; j <= N; j++) {
			for (int k = 1; k * j <= i && k <= A[j]; k++) {
				dp[i][j] += sum[i - k * j]; dp[i][j] %= mod;
				dp[i][j] -= dp[i - k * j][j]; dp[i][j] += mod; dp[i][j] %= mod;
				sum[i] += sum[i - k * j]; sum[i] %= mod;
				sum[i] -= dp[i - k * j][j]; sum[i] += mod; sum[i] %= mod;
			}
		}
	}
	ll ans = 0;
	for (int i = L; i <= R; i++) {
		ans += sum[i];
		ans %= mod;
	}
	cout << ans << endl;
	return 0;
}
0