結果

問題 No.1353 Limited Sequence
ユーザー shiomusubi496shiomusubi496
提出日時 2021-01-17 14:02:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 697 bytes
コンパイル時間 1,672 ms
コンパイル使用メモリ 167,160 KB
実行使用メモリ 36,480 KB
最終ジャッジ日時 2024-11-29 15:15:06
合計ジャッジ時間 5,616 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 3 ms
6,820 KB
testcase_10 AC 3 ms
6,816 KB
testcase_11 AC 3 ms
6,816 KB
testcase_12 AC 98 ms
30,372 KB
testcase_13 AC 123 ms
35,276 KB
testcase_14 AC 26 ms
14,664 KB
testcase_15 AC 50 ms
22,484 KB
testcase_16 AC 10 ms
9,304 KB
testcase_17 AC 14 ms
11,124 KB
testcase_18 AC 69 ms
29,944 KB
testcase_19 AC 170 ms
31,408 KB
testcase_20 AC 37 ms
19,460 KB
testcase_21 AC 11 ms
13,680 KB
testcase_22 AC 15 ms
13,016 KB
testcase_23 AC 102 ms
30,416 KB
testcase_24 AC 41 ms
27,204 KB
testcase_25 AC 124 ms
30,624 KB
testcase_26 AC 49 ms
24,064 KB
testcase_27 AC 23 ms
23,176 KB
testcase_28 AC 26 ms
16,500 KB
testcase_29 AC 19 ms
24,672 KB
testcase_30 AC 56 ms
33,224 KB
testcase_31 AC 35 ms
25,824 KB
testcase_32 AC 33 ms
26,596 KB
testcase_33 AC 20 ms
13,376 KB
testcase_34 AC 74 ms
35,500 KB
testcase_35 AC 21 ms
22,964 KB
testcase_36 AC 33 ms
27,088 KB
testcase_37 AC 138 ms
36,268 KB
testcase_38 AC 134 ms
36,312 KB
testcase_39 AC 130 ms
36,456 KB
testcase_40 AC 138 ms
36,312 KB
testcase_41 AC 135 ms
36,284 KB
testcase_42 AC 132 ms
36,312 KB
testcase_43 AC 141 ms
36,352 KB
testcase_44 AC 144 ms
36,480 KB
testcase_45 AC 138 ms
36,480 KB
testcase_46 AC 142 ms
36,352 KB
testcase_47 AC 80 ms
36,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define int long long
using namespace std;
const int mod=998244353;
void add(int&a,int b){a=(a+b+mod)%mod;}
int N,dp[2100][2100],V[2100],A[2100];
int f(int X){
    fill(dp[0],dp[X+1],0);
    dp[0][N]=1;
    for(int i=0;i<X;i++){
        int sum=0;
        for(int j=0;j<=N;j++)add(sum,dp[i][j]);
        for(int k=0;k<N;k++){
            for(int l=1;i+l*(k+1)<=X&&l<=A[k];l++){
                add(dp[i+l*(k+1)][k],sum-dp[i][k]);
            }
        }
    }
    int ans=0;
    for(int i=0;i<=X;i++)for(int j=0;j<N;j++)add(ans,dp[i][j]);
    return ans;
}
signed main(){
    int L,R;cin>>N>>L>>R;
    for(int i=0;i<N;i++)cin>>A[i];
    cout<<(f(R)-f(L-1)+mod)%mod<<endl;
}
0