結果

問題 No.2111 Sum of Diff
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-10-28 23:07:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 246 ms / 2,000 ms
コード長 194 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 106,880 KB
最終ジャッジ日時 2024-07-06 02:21:34
合計ジャッジ時間 4,943 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,712 KB
testcase_01 AC 33 ms
51,328 KB
testcase_02 AC 241 ms
102,016 KB
testcase_03 AC 168 ms
93,312 KB
testcase_04 AC 64 ms
65,792 KB
testcase_05 AC 242 ms
101,632 KB
testcase_06 AC 239 ms
101,632 KB
testcase_07 AC 83 ms
70,912 KB
testcase_08 AC 101 ms
76,032 KB
testcase_09 AC 51 ms
62,592 KB
testcase_10 AC 56 ms
63,616 KB
testcase_11 AC 142 ms
83,200 KB
testcase_12 AC 134 ms
82,816 KB
testcase_13 AC 105 ms
73,856 KB
testcase_14 AC 196 ms
98,432 KB
testcase_15 AC 230 ms
106,880 KB
testcase_16 AC 119 ms
80,512 KB
testcase_17 AC 246 ms
101,760 KB
testcase_18 AC 97 ms
74,368 KB
testcase_19 AC 183 ms
97,536 KB
testcase_20 AC 239 ms
101,632 KB
testcase_21 AC 43 ms
59,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
ans = 0
mod = 998244353
for i in range(n):
    ans -= (pow(2,i,mod)-1) * a[i]
    ans += (pow(2,n-i-1,mod)-1) * a[i]
    ans %= mod
print(ans)
0