結果

問題 No.2111 Sum of Diff
ユーザー lloyzlloyz
提出日時 2022-10-28 21:48:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 107,632 KB
最終ジャッジ日時 2024-07-06 00:53:49
合計ジャッジ時間 4,440 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,352 KB
testcase_01 AC 38 ms
52,696 KB
testcase_02 AC 270 ms
102,204 KB
testcase_03 AC 183 ms
94,012 KB
testcase_04 AC 67 ms
67,412 KB
testcase_05 AC 265 ms
101,984 KB
testcase_06 AC 263 ms
102,280 KB
testcase_07 AC 88 ms
71,732 KB
testcase_08 AC 109 ms
77,864 KB
testcase_09 AC 54 ms
64,132 KB
testcase_10 AC 59 ms
65,052 KB
testcase_11 AC 139 ms
84,616 KB
testcase_12 AC 136 ms
84,636 KB
testcase_13 AC 101 ms
76,440 KB
testcase_14 AC 214 ms
99,276 KB
testcase_15 AC 251 ms
107,632 KB
testcase_16 AC 124 ms
81,452 KB
testcase_17 AC 266 ms
101,960 KB
testcase_18 AC 103 ms
75,552 KB
testcase_19 AC 199 ms
98,212 KB
testcase_20 AC 264 ms
102,116 KB
testcase_21 AC 45 ms
61,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 0
for i in range(n):
    if i < n - 1:
        ans += A[i] * (pow(2, n - i - 1, mod) - 1) % mod
        ans %= mod
    if i > 0:
        ans -= A[i] * (pow(2, i, mod) - 1) % mod
        ans %= mod
print(ans)
0