結果

問題 No.2111 Sum of Diff
ユーザー titan23titan23
提出日時 2022-12-25 19:23:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 107,356 KB
最終ジャッジ日時 2024-11-19 09:33:21
合計ジャッジ時間 5,213 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,876 KB
testcase_01 AC 35 ms
53,632 KB
testcase_02 AC 252 ms
102,116 KB
testcase_03 AC 173 ms
94,504 KB
testcase_04 AC 65 ms
66,684 KB
testcase_05 AC 250 ms
101,984 KB
testcase_06 AC 248 ms
102,132 KB
testcase_07 AC 82 ms
72,648 KB
testcase_08 AC 100 ms
76,744 KB
testcase_09 AC 50 ms
62,544 KB
testcase_10 AC 56 ms
63,612 KB
testcase_11 AC 132 ms
83,660 KB
testcase_12 AC 136 ms
83,468 KB
testcase_13 AC 95 ms
74,684 KB
testcase_14 AC 196 ms
98,624 KB
testcase_15 AC 226 ms
107,356 KB
testcase_16 AC 115 ms
81,516 KB
testcase_17 AC 243 ms
101,944 KB
testcase_18 AC 95 ms
75,292 KB
testcase_19 AC 184 ms
97,680 KB
testcase_20 AC 246 ms
102,084 KB
testcase_21 AC 43 ms
60,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
mod = 998244353

#  -----------------------  #

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

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