結果

問題 No.2111 Sum of Diff
ユーザー paruf4paruf4
提出日時 2022-10-28 23:59:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 189 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 107,520 KB
最終ジャッジ日時 2024-07-06 03:17:58
合計ジャッジ時間 4,213 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,856 KB
testcase_01 AC 32 ms
51,456 KB
testcase_02 AC 240 ms
102,016 KB
testcase_03 AC 172 ms
97,516 KB
testcase_04 AC 63 ms
70,400 KB
testcase_05 AC 236 ms
101,936 KB
testcase_06 AC 235 ms
101,768 KB
testcase_07 AC 79 ms
77,824 KB
testcase_08 AC 99 ms
85,004 KB
testcase_09 AC 48 ms
64,000 KB
testcase_10 AC 54 ms
66,432 KB
testcase_11 AC 131 ms
89,984 KB
testcase_12 AC 127 ms
89,984 KB
testcase_13 AC 99 ms
83,840 KB
testcase_14 AC 210 ms
100,864 KB
testcase_15 AC 238 ms
107,520 KB
testcase_16 AC 126 ms
87,936 KB
testcase_17 AC 250 ms
101,992 KB
testcase_18 AC 108 ms
83,584 KB
testcase_19 AC 198 ms
100,608 KB
testcase_20 AC 250 ms
101,864 KB
testcase_21 AC 43 ms
60,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

mod = 998244353
res = 0
for i in range(n):
    res += a[i]*(pow(2, n-1-i, mod)-1)
    res -= a[i]*(pow(2, i, mod)-1)

print(res % mod)
0