結果

問題 No.1353 Limited Sequence
ユーザー blackyukiblackyuki
提出日時 2021-01-15 18:20:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 600 bytes
コンパイル時間 2,002 ms
コンパイル使用メモリ 205,248 KB
実行使用メモリ 19,328 KB
最終ジャッジ日時 2024-05-04 19:43:54
合計ジャッジ時間 6,694 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 122 ms
10,112 KB
testcase_13 AC 119 ms
8,064 KB
testcase_14 AC 15 ms
7,424 KB
testcase_15 AC 53 ms
11,904 KB
testcase_16 AC 7 ms
5,376 KB
testcase_17 AC 9 ms
6,016 KB
testcase_18 AC 96 ms
9,856 KB
testcase_19 AC 143 ms
15,488 KB
testcase_20 AC 30 ms
7,296 KB
testcase_21 AC 10 ms
5,376 KB
testcase_22 AC 10 ms
5,504 KB
testcase_23 AC 92 ms
9,216 KB
testcase_24 AC 64 ms
7,296 KB
testcase_25 AC 119 ms
12,928 KB
testcase_26 AC 55 ms
7,808 KB
testcase_27 AC 35 ms
5,376 KB
testcase_28 AC 20 ms
8,192 KB
testcase_29 AC 25 ms
5,376 KB
testcase_30 AC 93 ms
6,656 KB
testcase_31 AC 51 ms
6,656 KB
testcase_32 AC 17 ms
9,216 KB
testcase_33 AC 6 ms
5,888 KB
testcase_34 AC 27 ms
12,288 KB
testcase_35 AC 9 ms
6,656 KB
testcase_36 AC 10 ms
6,784 KB
testcase_37 AC 214 ms
19,200 KB
testcase_38 AC 202 ms
19,200 KB
testcase_39 AC 204 ms
19,200 KB
testcase_40 AC 213 ms
19,200 KB
testcase_41 AC 216 ms
19,072 KB
testcase_42 AC 203 ms
19,200 KB
testcase_43 AC 222 ms
19,200 KB
testcase_44 AC 209 ms
19,200 KB
testcase_45 AC 208 ms
19,328 KB
testcase_46 AC 219 ms
19,328 KB
testcase_47 AC 44 ms
19,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int mod=998244353;
int main(){
    int n,l,r,ans=0;cin>>n>>l>>r;
    vector<int> A(n+1);for(int i=1;i<=n;i++)cin>>A[i];
    vector<vector<int>> dp(r+1,vector<int>(n+1));dp[0][0]++;
    vector<int> dp_sum(r+1);dp_sum[0]++;
    for(int s=1;s<=r;s++)for(int lst=1;lst<=n;lst++)for(int t=1;t*lst<=s&&t<=A[lst];t++){
        dp[s][lst]=((dp[s][lst]+dp_sum[s-t*lst]-dp[s-t*lst][lst])%mod+mod)%mod;
        dp_sum[s]=((dp_sum[s]+dp_sum[s-t*lst]-dp[s-t*lst][lst])%mod+mod)%mod;
    }
    for(int i=l;i<=r;i++)ans=(ans+dp_sum[i])%mod;
    cout<<ans<<endl;
}
0