結果

問題 No.2111 Sum of Diff
ユーザー dachengzdachengz
提出日時 2022-11-16 10:33:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 107,128 KB
最終ジャッジ日時 2024-09-17 07:38:41
合計ジャッジ時間 2,579 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,160 KB
testcase_01 AC 35 ms
52,884 KB
testcase_02 AC 93 ms
101,740 KB
testcase_03 AC 70 ms
94,748 KB
testcase_04 AC 43 ms
66,648 KB
testcase_05 AC 89 ms
101,816 KB
testcase_06 AC 89 ms
101,820 KB
testcase_07 AC 48 ms
72,504 KB
testcase_08 AC 52 ms
76,184 KB
testcase_09 AC 40 ms
62,472 KB
testcase_10 AC 41 ms
63,424 KB
testcase_11 AC 58 ms
83,320 KB
testcase_12 AC 61 ms
82,792 KB
testcase_13 AC 49 ms
73,880 KB
testcase_14 AC 71 ms
98,568 KB
testcase_15 AC 84 ms
107,128 KB
testcase_16 AC 55 ms
80,088 KB
testcase_17 AC 89 ms
101,908 KB
testcase_18 AC 54 ms
74,464 KB
testcase_19 AC 72 ms
96,960 KB
testcase_20 AC 90 ms
101,916 KB
testcase_21 AC 39 ms
60,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = map(int, input().split())
mod = 998244353

A = list(A)
pow2_lo = 1
inv2 = (mod + 1) // 2
pow2_hi = pow(2, N - 1, mod)
ans = 0
for a in A:
    ans = (ans + a * (pow2_hi - pow2_lo)) % mod
    pow2_lo = pow2_lo * 2 % mod
    pow2_hi = pow2_hi * inv2 % mod
print(ans)
0