結果

問題 No.2111 Sum of Diff
ユーザー タコイモタコイモ
提出日時 2022-10-28 22:13:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 243 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 109,312 KB
最終ジャッジ日時 2024-07-06 01:23:26
合計ジャッジ時間 2,657 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,840 KB
testcase_01 AC 33 ms
51,968 KB
testcase_02 AC 89 ms
101,936 KB
testcase_03 AC 72 ms
94,720 KB
testcase_04 AC 47 ms
66,432 KB
testcase_05 AC 95 ms
101,888 KB
testcase_06 AC 95 ms
101,760 KB
testcase_07 AC 50 ms
71,552 KB
testcase_08 AC 54 ms
76,800 KB
testcase_09 AC 40 ms
63,104 KB
testcase_10 AC 42 ms
64,512 KB
testcase_11 AC 60 ms
83,840 KB
testcase_12 AC 59 ms
84,224 KB
testcase_13 AC 51 ms
74,624 KB
testcase_14 AC 78 ms
100,340 KB
testcase_15 AC 85 ms
109,312 KB
testcase_16 AC 57 ms
81,280 KB
testcase_17 AC 93 ms
102,092 KB
testcase_18 AC 51 ms
75,520 KB
testcase_19 AC 70 ms
98,432 KB
testcase_20 AC 87 ms
101,888 KB
testcase_21 AC 37 ms
60,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for i in range(N):
  ai = a[i]
  ans = (ans-ai*(n2[i]-1)+ai*(n2[N-i-1]-1))%mod
print(ans)

  
0