結果

問題 No.2111 Sum of Diff
ユーザー kokatsukokatsu
提出日時 2022-11-13 16:35:45
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 2,691 ms
コンパイル使用メモリ 213,992 KB
実行使用メモリ 15,060 KB
最終ジャッジ日時 2024-06-22 16:42:22
合計ジャッジ時間 4,595 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 84 ms
15,060 KB
testcase_03 AC 29 ms
10,012 KB
testcase_04 AC 8 ms
6,940 KB
testcase_05 AC 44 ms
13,324 KB
testcase_06 AC 43 ms
13,156 KB
testcase_07 AC 12 ms
6,944 KB
testcase_08 AC 15 ms
6,944 KB
testcase_09 AC 4 ms
6,944 KB
testcase_10 AC 5 ms
6,940 KB
testcase_11 AC 25 ms
7,444 KB
testcase_12 AC 48 ms
8,260 KB
testcase_13 AC 17 ms
6,940 KB
testcase_14 AC 41 ms
10,496 KB
testcase_15 AC 45 ms
12,820 KB
testcase_16 AC 18 ms
7,228 KB
testcase_17 AC 44 ms
14,532 KB
testcase_18 AC 14 ms
6,940 KB
testcase_19 AC 30 ms
10,636 KB
testcase_20 AC 43 ms
15,056 KB
testcase_21 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

enum long MOD = 998244353;

void addMod(ref long x, long y) {
    x = (x + y) % MOD;
}

void main() {
    long N;
    readf("%d\n", N);

    auto a = readln.chomp.split.to!(long[]);

    auto pow2 = new long[](N+1);
    pow2[0] = 1;
    foreach (i; 1 .. N+1) pow2[i] = (pow2[i-1] * 2) % MOD;

    long res;
    foreach (i, x; a) {
        addMod(res, x*(pow2[N-i-1]-pow2[i]+MOD));
    }

    res.writeln;
}
0