結果

問題 No.2111 Sum of Diff
ユーザー qibqib
提出日時 2022-11-12 20:21:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 1,067 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 107,516 KB
最終ジャッジ日時 2024-09-14 09:23:07
合計ジャッジ時間 5,052 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,228 KB
testcase_01 AC 37 ms
52,876 KB
testcase_02 AC 106 ms
101,572 KB
testcase_03 AC 78 ms
94,860 KB
testcase_04 AC 51 ms
67,276 KB
testcase_05 AC 105 ms
101,932 KB
testcase_06 AC 105 ms
102,044 KB
testcase_07 AC 56 ms
72,728 KB
testcase_08 AC 62 ms
78,720 KB
testcase_09 AC 48 ms
64,780 KB
testcase_10 AC 49 ms
66,052 KB
testcase_11 AC 69 ms
85,604 KB
testcase_12 AC 68 ms
85,360 KB
testcase_13 AC 59 ms
75,400 KB
testcase_14 AC 85 ms
100,452 KB
testcase_15 AC 98 ms
107,516 KB
testcase_16 AC 64 ms
82,232 KB
testcase_17 AC 105 ms
101,864 KB
testcase_18 AC 60 ms
75,220 KB
testcase_19 AC 83 ms
100,144 KB
testcase_20 AC 104 ms
101,908 KB
testcase_21 AC 44 ms
60,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

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

pow2 = [1 for _ in range(n)]
for i in range(1, n):
  pow2[i] = (pow2[i - 1] * 2) % MOD

ans = 0
for i in range(n):
  ans = (ans + a[i] * (pow2[n - 1 - i] - pow2[i])) % MOD

print(ans)
0