結果

問題 No.2717 Sum of Subarray of Subsequence
ユーザー flygonflygon
提出日時 2024-04-05 23:27:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 115,660 KB
最終ジャッジ日時 2024-10-01 03:08:03
合計ジャッジ時間 5,388 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
77,592 KB
testcase_01 AC 145 ms
76,104 KB
testcase_02 AC 142 ms
76,704 KB
testcase_03 AC 142 ms
76,960 KB
testcase_04 AC 143 ms
76,148 KB
testcase_05 AC 143 ms
76,644 KB
testcase_06 AC 144 ms
77,368 KB
testcase_07 AC 142 ms
76,224 KB
testcase_08 AC 140 ms
77,916 KB
testcase_09 AC 191 ms
113,408 KB
testcase_10 AC 194 ms
113,440 KB
testcase_11 AC 189 ms
113,540 KB
testcase_12 AC 188 ms
113,292 KB
testcase_13 AC 192 ms
113,432 KB
testcase_14 AC 191 ms
113,632 KB
testcase_15 AC 197 ms
113,284 KB
testcase_16 AC 189 ms
113,168 KB
testcase_17 AC 188 ms
113,676 KB
testcase_18 AC 191 ms
113,308 KB
testcase_19 AC 184 ms
113,428 KB
testcase_20 AC 137 ms
77,432 KB
testcase_21 AC 142 ms
76,696 KB
testcase_22 AC 185 ms
115,632 KB
testcase_23 AC 172 ms
115,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n = int(input())
a = list(map(int,input().split()))
mod= 998244353
x = [1,3]
for i in range(2,202020):
    x.append(x[-1]*2+pow(2,i-1, mod))
    x[-1] %= mod
ans = 0
for i in range(n):
    l = i
    r = n-i-1
    tmp = x[l] * x[r]
    tmp %= mod
    ans += tmp*a[i]
    ans %= mod

print(ans)
0