結果

問題 No.1325 Subsequence Score
ユーザー tsutajtsutaj
提出日時 2020-12-03 22:57:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 696 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 32,640 KB
実行使用メモリ 59,456 KB
最終ジャッジ日時 2024-09-17 14:00:16
合計ジャッジ時間 4,629 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,752 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 37 ms
33,476 KB
testcase_04 AC 18 ms
17,992 KB
testcase_05 AC 75 ms
59,456 KB
testcase_06 AC 12 ms
13,892 KB
testcase_07 AC 43 ms
37,704 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 4 ms
7,104 KB
testcase_10 AC 8 ms
9,924 KB
testcase_11 AC 12 ms
13,640 KB
testcase_12 AC 24 ms
21,956 KB
testcase_13 TLE -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
using ll = long long int;
const ll MOD = 998244353;
ll dp[2010][2010], sum[2010][2010];
int main() {
    int N; scanf("%d", &N);
    dp[0][0] = 1;
    for(int i=0; i<N; i++) {
        ll V; scanf("%lld", &V);
        for(int j=0; j<=N; j++) {
            // 使わない
            (dp[i+1][j] += dp[i][j]) %= MOD;
            (sum[i+1][j] += sum[i][j]) %= MOD;
            // 使う
            (dp[i+1][j+1] += dp[i][j]) %= MOD;
            (sum[i+1][j+1] += sum[i][j]) %= MOD;
            (sum[i+1][j+1] += (j+1) * V % MOD * dp[i][j]) %= MOD;
        }
    }

    ll ans = 0;
    for(int i=0; i<=N; i++) (ans += sum[N][i]) %= MOD;
    printf("%lld\n", ans);
    return 0;
}
0