結果

問題 No.2111 Sum of Diff
ユーザー sepa38sepa38
提出日時 2022-12-13 15:42:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 275 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 107,136 KB
最終ジャッジ日時 2024-11-07 10:50:20
合計ジャッジ時間 5,740 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,456 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 275 ms
101,760 KB
testcase_03 AC 191 ms
93,440 KB
testcase_04 AC 74 ms
66,304 KB
testcase_05 AC 274 ms
101,888 KB
testcase_06 AC 273 ms
101,888 KB
testcase_07 AC 95 ms
71,296 KB
testcase_08 AC 117 ms
76,032 KB
testcase_09 AC 59 ms
62,720 KB
testcase_10 AC 65 ms
63,744 KB
testcase_11 AC 146 ms
83,200 KB
testcase_12 AC 144 ms
82,816 KB
testcase_13 AC 108 ms
74,112 KB
testcase_14 AC 220 ms
98,688 KB
testcase_15 AC 261 ms
107,136 KB
testcase_16 AC 132 ms
80,256 KB
testcase_17 AC 272 ms
101,760 KB
testcase_18 AC 109 ms
74,624 KB
testcase_19 AC 207 ms
97,408 KB
testcase_20 AC 271 ms
102,144 KB
testcase_21 AC 50 ms
60,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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