結果

問題 No.2111 Sum of Diff
ユーザー terasaterasa
提出日時 2022-10-28 21:46:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 676 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 116,928 KB
最終ジャッジ日時 2024-07-06 00:52:12
合計ジャッジ時間 5,314 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
67,632 KB
testcase_01 AC 65 ms
68,588 KB
testcase_02 AC 303 ms
116,508 KB
testcase_03 AC 222 ms
99,164 KB
testcase_04 AC 101 ms
80,636 KB
testcase_05 AC 301 ms
116,928 KB
testcase_06 AC 302 ms
116,520 KB
testcase_07 AC 123 ms
84,156 KB
testcase_08 AC 144 ms
86,016 KB
testcase_09 AC 78 ms
75,236 KB
testcase_10 AC 90 ms
79,084 KB
testcase_11 AC 176 ms
91,340 KB
testcase_12 AC 172 ms
91,076 KB
testcase_13 AC 136 ms
85,852 KB
testcase_14 AC 259 ms
108,588 KB
testcase_15 AC 294 ms
116,092 KB
testcase_16 AC 160 ms
89,232 KB
testcase_17 AC 303 ms
116,628 KB
testcase_18 AC 139 ms
85,644 KB
testcase_19 AC 245 ms
106,824 KB
testcase_20 AC 303 ms
116,376 KB
testcase_21 AC 70 ms
72,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from typing import List, Tuple, Callable, TypeVar
import sys
import itertools
import heapq
import math
import bisect
from collections import deque, defaultdict
from functools import lru_cache, cmp_to_key

input = sys.stdin.readline

# for AtCoder Easy test
if __file__ != 'prog.py':
    sys.setrecursionlimit(10 ** 6)


def readints(): return map(int, input().split())
def readlist(): return list(readints())
def readstr(): return input()[:-1]


N = int(input())
A = readlist()
mod = 998244353

D = [A[i] - A[i + 1] for i in range(N - 1)]
ans = 0
for i in range(N - 1):
    ans += D[i] * (pow(2, i + 1, mod) - 1) * (pow(2, N - 1 - i, mod) - 1) % mod
    ans %= mod
print(ans)
0