結果

問題 No.2111 Sum of Diff
ユーザー H20H20
提出日時 2022-10-28 22:11:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 256 ms / 2,000 ms
コード長 205 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 107,536 KB
最終ジャッジ日時 2024-07-06 01:21:27
合計ジャッジ時間 4,326 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,988 KB
testcase_01 AC 34 ms
52,116 KB
testcase_02 AC 256 ms
101,816 KB
testcase_03 AC 177 ms
97,652 KB
testcase_04 AC 70 ms
72,160 KB
testcase_05 AC 247 ms
102,056 KB
testcase_06 AC 249 ms
102,148 KB
testcase_07 AC 82 ms
79,052 KB
testcase_08 AC 105 ms
85,224 KB
testcase_09 AC 48 ms
65,860 KB
testcase_10 AC 54 ms
67,560 KB
testcase_11 AC 135 ms
90,488 KB
testcase_12 AC 132 ms
90,200 KB
testcase_13 AC 106 ms
83,820 KB
testcase_14 AC 202 ms
100,888 KB
testcase_15 AC 231 ms
107,536 KB
testcase_16 AC 119 ms
88,812 KB
testcase_17 AC 253 ms
101,916 KB
testcase_18 AC 100 ms
83,860 KB
testcase_19 AC 186 ms
100,644 KB
testcase_20 AC 242 ms
102,212 KB
testcase_21 AC 46 ms
61,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
mod = 998244353
ans = 0
for i,a in enumerate(A):
    ans += (pow(2,N-1-i,mod)-1)*a
for i,a in enumerate(A):
    ans -= (pow(2,i,mod)-1)*a
print(ans%mod)
0