結果

問題 No.2111 Sum of Diff
ユーザー shotoyooshotoyoo
提出日時 2022-10-28 21:40:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 914 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 103,076 KB
最終ジャッジ日時 2024-07-06 00:45:16
合計ジャッジ時間 3,728 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,272 KB
testcase_01 AC 39 ms
54,272 KB
testcase_02 AC 176 ms
101,220 KB
testcase_03 AC 130 ms
97,280 KB
testcase_04 AC 64 ms
68,736 KB
testcase_05 AC 183 ms
101,344 KB
testcase_06 AC 188 ms
101,280 KB
testcase_07 AC 76 ms
74,496 KB
testcase_08 AC 91 ms
79,488 KB
testcase_09 AC 55 ms
65,280 KB
testcase_10 AC 55 ms
66,688 KB
testcase_11 AC 107 ms
86,912 KB
testcase_12 AC 107 ms
86,528 KB
testcase_13 AC 84 ms
77,696 KB
testcase_14 AC 154 ms
103,076 KB
testcase_15 AC 184 ms
100,836 KB
testcase_16 AC 100 ms
83,804 KB
testcase_17 AC 181 ms
101,208 KB
testcase_18 AC 84 ms
77,952 KB
testcase_19 AC 143 ms
101,612 KB
testcase_20 AC 181 ms
101,556 KB
testcase_21 AC 51 ms
62,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, random
input = lambda : sys.stdin.readline().rstrip()


write = lambda x: sys.stdout.write(x+"\n"); writef = lambda x: print("{:.12f}".format(x))
debug = lambda x: sys.stderr.write(x+"\n")
YES="Yes"; NO="No"; pans = lambda v: print(YES if v else NO); INF=10**18
LI = lambda : list(map(int, input().split())); II=lambda : int(input()); SI=lambda : [ord(c)-ord("a") for c in input()]
def debug(_l_):
    for s in _l_.split():
        print(f"{s}={eval(s)}", end=" ")
    print()
def dlist(*l, fill=0):
    if len(l)==1:
        return [fill]*l[0]
    ll = l[1:]
    return [dlist(*ll, fill=fill) for _ in range(l[0])]

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