結果

問題 No.2111 Sum of Diff
ユーザー 7iz67iz6
提出日時 2022-11-02 16:45:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 695 bytes
コンパイル時間 1,473 ms
コンパイル使用メモリ 168,032 KB
実行使用メモリ 8,136 KB
最終ジャッジ日時 2024-07-17 05:59:17
合計ジャッジ時間 3,424 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 86 ms
8,136 KB
testcase_03 AC 59 ms
6,940 KB
testcase_04 AC 13 ms
6,940 KB
testcase_05 AC 86 ms
8,064 KB
testcase_06 AC 85 ms
8,136 KB
testcase_07 AC 22 ms
6,944 KB
testcase_08 AC 31 ms
6,940 KB
testcase_09 AC 7 ms
6,940 KB
testcase_10 AC 10 ms
6,940 KB
testcase_11 AC 42 ms
6,944 KB
testcase_12 AC 41 ms
6,944 KB
testcase_13 AC 27 ms
6,944 KB
testcase_14 AC 70 ms
7,628 KB
testcase_15 AC 82 ms
8,012 KB
testcase_16 AC 36 ms
6,940 KB
testcase_17 AC 85 ms
8,008 KB
testcase_18 AC 28 ms
6,944 KB
testcase_19 AC 65 ms
7,368 KB
testcase_20 AC 86 ms
8,136 KB
testcase_21 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
const long long INF = 1LL<<60;
const int MOD = 998244353;

long long pow2[200006];
long long cum[200006] = {};

int main() {
    int n; cin >> n;
    pow2[0] = 1;
    long long ans = 0;
    long long a[n];
    for(int i = 0; i < n; i++) {
        cin >> a[i];
    }
    for(int i = 1; i <= n; i++) {
        pow2[i] = pow2[i-1] * 2 % MOD;
        cum[i] = cum[i-1] + pow2[i-1];
        cum[i] %= MOD;
    }
    for(int i = 0; i < n; i++) {
        ans += cum[abs(n-1-i)] * a[i];
        ans %= MOD;
        ans -= cum[abs(i-0)] * a[i];
        ans %= MOD;
        ans += MOD;
        ans %= MOD;
    }
    cout << ans << endl;
}
0