結果

問題 No.2111 Sum of Diff
ユーザー shobonvipshobonvip
提出日時 2022-10-28 21:46:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 265 ms / 2,000 ms
コード長 193 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 107,188 KB
最終ジャッジ日時 2024-07-06 00:52:06
合計ジャッジ時間 4,395 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,336 KB
testcase_01 AC 36 ms
52,680 KB
testcase_02 AC 265 ms
101,984 KB
testcase_03 AC 182 ms
94,252 KB
testcase_04 AC 65 ms
66,644 KB
testcase_05 AC 261 ms
102,208 KB
testcase_06 AC 260 ms
101,852 KB
testcase_07 AC 86 ms
72,332 KB
testcase_08 AC 108 ms
76,560 KB
testcase_09 AC 52 ms
63,112 KB
testcase_10 AC 56 ms
64,736 KB
testcase_11 AC 137 ms
84,564 KB
testcase_12 AC 134 ms
82,884 KB
testcase_13 AC 99 ms
75,592 KB
testcase_14 AC 209 ms
98,788 KB
testcase_15 AC 246 ms
107,188 KB
testcase_16 AC 124 ms
80,800 KB
testcase_17 AC 261 ms
101,856 KB
testcase_18 AC 100 ms
74,560 KB
testcase_19 AC 196 ms
98,720 KB
testcase_20 AC 263 ms
101,788 KB
testcase_21 AC 44 ms
61,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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) - 1)
	ans -= a[i] * (pow(2, i, mod) - 1)
	ans %= mod
print(ans)
0