結果

問題 No.2111 Sum of Diff
ユーザー とりゐとりゐ
提出日時 2022-10-28 22:18:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 265 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 113,056 KB
最終ジャッジ日時 2024-07-06 01:28:57
合計ジャッジ時間 2,585 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,428 KB
testcase_01 AC 37 ms
52,616 KB
testcase_02 AC 105 ms
112,944 KB
testcase_03 AC 83 ms
105,236 KB
testcase_04 AC 50 ms
70,076 KB
testcase_05 AC 111 ms
112,688 KB
testcase_06 AC 101 ms
113,056 KB
testcase_07 AC 51 ms
76,028 KB
testcase_08 AC 55 ms
82,848 KB
testcase_09 AC 42 ms
64,724 KB
testcase_10 AC 45 ms
66,704 KB
testcase_11 AC 63 ms
92,272 KB
testcase_12 AC 62 ms
91,328 KB
testcase_13 AC 54 ms
81,088 KB
testcase_14 AC 94 ms
111,912 KB
testcase_15 AC 95 ms
107,520 KB
testcase_16 AC 64 ms
88,212 KB
testcase_17 AC 102 ms
112,688 KB
testcase_18 AC 55 ms
81,172 KB
testcase_19 AC 80 ms
110,192 KB
testcase_20 AC 100 ms
112,920 KB
testcase_21 AC 40 ms
62,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353
n=int(input())
a=list(map(int,input().split()))

pow2=[1]
for i in range(n+10):
  pow2.append(pow2[-1]*2%mod)
ans=0
for i in range(n):
  ans+=a[i]*(pow2[i])%mod*(pow2[n-1-i]-1)%mod
  ans-=a[i]*(pow2[i]-1)%mod*(pow2[n-1-i])%mod
  ans%=mod
  
print(ans)
0