結果

問題 No.1353 Limited Sequence
ユーザー pockynypockyny
提出日時 2021-01-17 13:58:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 766 bytes
コンパイル時間 692 ms
コンパイル使用メモリ 68,976 KB
実行使用メモリ 13,752 KB
最終ジャッジ日時 2024-05-07 02:42:34
合計ジャッジ時間 6,964 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
13,752 KB
testcase_01 AC 89 ms
6,940 KB
testcase_02 TLE -
testcase_03 AC 27 ms
6,940 KB
testcase_04 AC 31 ms
6,940 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;
typedef long long ll;
ll mod = 998244353,dp[2010][2010] = {},a[2010];
int main(){
    ll i,j,k,m,n,l,r; cin >> n >> l >> r;
    for(i=1;i<=n;i++) cin >> a[i];
    for(i=1;i<=n;i++){
        for(j=1;j<=a[i];j++){
            if(j*i>2000) break;
            dp[i][j*i] = 1;
        }
    }
    for(j=0;j<=2000;j++){
        for(i=1;i<=n;i++){
            for(k=1;k<=2000 - j;k++){
                if(k==i) continue;
                for(m=1;m<=a[k];m++){
                    if(j + m*k>2000) break;
                    (dp[k][j + m*k] += dp[i][j]) %= mod;
                }
            }
        }
    }
    ll ans = 0;
    for(i=1;i<=n;i++){
        for(j=l;j<=r;j++) (ans += dp[i][j]) %= mod;
    }
    cout << ans << endl;
}
0