結果

問題 No.1239 Multiplication -2
ユーザー trineutrontrineutron
提出日時 2020-09-25 22:48:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 864 bytes
コンパイル時間 2,361 ms
コンパイル使用メモリ 207,704 KB
実行使用メモリ 18,176 KB
最終ジャッジ日時 2024-06-28 07:08:25
合計ジャッジ時間 4,447 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 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 19 ms
7,936 KB
testcase_16 AC 32 ms
11,264 KB
testcase_17 AC 54 ms
18,144 KB
testcase_18 AC 53 ms
18,048 KB
testcase_19 AC 54 ms
18,076 KB
testcase_20 AC 59 ms
18,176 KB
testcase_21 AC 53 ms
17,792 KB
testcase_22 AC 50 ms
17,152 KB
testcase_23 AC 43 ms
13,568 KB
testcase_24 AC 41 ms
13,088 KB
testcase_25 AC 32 ms
11,776 KB
testcase_26 AC 38 ms
12,448 KB
testcase_27 AC 17 ms
7,168 KB
testcase_28 AC 50 ms
15,872 KB
testcase_29 AC 55 ms
17,152 KB
testcase_30 AC 23 ms
9,216 KB
testcase_31 AC 35 ms
11,904 KB
testcase_32 AC 58 ms
17,920 KB
testcase_33 AC 42 ms
13,440 KB
testcase_34 AC 39 ms
12,800 KB
testcase_35 AC 20 ms
7,936 KB
testcase_36 AC 17 ms
7,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    constexpr int64_t mod = 998244353;
    int n;
    cin >> n;
    vector<int> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }

    vector<vector<int64_t>> dp(n + 1, vector<int64_t>(5)); // dp[i][j] = i-th, j - 2
    int64_t ans = 0, d = 1, r = 1;
    for (int i = 0; i < n; i++) {
        dp[i][3] += d;
        for (int j = 0; j <= 4; j++) {
            int j_next = 2 + (j - 2) * a[i];
            if (0 <= j_next and j_next <= 4) {
                dp[i + 1][j_next] += dp[i][j];
                dp[i + 1][j_next] %= mod;
            }
        }
        if (i) d *= 2;
        d %= mod;
        ans *= 2;
        ans += dp[i + 1][0];
        ans %= mod;
        r *= (mod + 1) / 2;
        r %= mod;
    }
    ans += dp[n][0];
    ans %= mod;

    cout << ans * r % mod << endl;
}
0