結果

問題 No.2111 Sum of Diff
ユーザー roarisroaris
提出日時 2022-10-28 23:28:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 113,312 KB
最終ジャッジ日時 2024-07-06 02:44:09
合計ジャッジ時間 3,743 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,120 KB
testcase_01 AC 42 ms
54,016 KB
testcase_02 AC 118 ms
112,664 KB
testcase_03 AC 95 ms
106,172 KB
testcase_04 AC 56 ms
69,632 KB
testcase_05 AC 118 ms
113,116 KB
testcase_06 AC 120 ms
112,924 KB
testcase_07 AC 62 ms
76,288 KB
testcase_08 AC 68 ms
82,688 KB
testcase_09 AC 50 ms
65,152 KB
testcase_10 AC 53 ms
67,200 KB
testcase_11 AC 78 ms
91,648 KB
testcase_12 AC 76 ms
90,780 KB
testcase_13 AC 66 ms
80,384 KB
testcase_14 AC 97 ms
99,968 KB
testcase_15 AC 116 ms
112,352 KB
testcase_16 AC 73 ms
87,552 KB
testcase_17 AC 118 ms
113,312 KB
testcase_18 AC 67 ms
80,564 KB
testcase_19 AC 95 ms
99,456 KB
testcase_20 AC 117 ms
113,132 KB
testcase_21 AC 50 ms
62,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N = int(input())
A = list(map(int, input().split()))
ans = 0
MOD = 998244353
p = [1]

for i in range(N+10):
    p.append(p[-1]*2%MOD)

for i in range(N):
    ans += p[N-1-i]*A[i]%MOD
    ans -= p[i]*A[i]%MOD
    ans %= MOD

print(ans)
0