結果

問題 No.2717 Sum of Subarray of Subsequence
ユーザー Mao-betaMao-beta
提出日時 2024-04-18 14:42:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 426 ms / 2,000 ms
コード長 918 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 81,956 KB
実行使用メモリ 104,660 KB
最終ジャッジ日時 2024-10-10 07:58:10
合計ジャッジ時間 7,460 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
57,288 KB
testcase_01 AC 47 ms
56,696 KB
testcase_02 AC 52 ms
56,092 KB
testcase_03 AC 49 ms
57,344 KB
testcase_04 AC 47 ms
56,620 KB
testcase_05 AC 49 ms
57,860 KB
testcase_06 AC 48 ms
57,164 KB
testcase_07 AC 50 ms
56,404 KB
testcase_08 AC 49 ms
56,008 KB
testcase_09 AC 353 ms
103,300 KB
testcase_10 AC 365 ms
103,412 KB
testcase_11 AC 353 ms
103,164 KB
testcase_12 AC 346 ms
103,168 KB
testcase_13 AC 332 ms
103,292 KB
testcase_14 AC 344 ms
103,168 KB
testcase_15 AC 358 ms
103,416 KB
testcase_16 AC 362 ms
103,168 KB
testcase_17 AC 364 ms
103,160 KB
testcase_18 AC 426 ms
103,560 KB
testcase_19 AC 358 ms
103,040 KB
testcase_20 AC 48 ms
55,656 KB
testcase_21 AC 47 ms
56,204 KB
testcase_22 AC 377 ms
103,128 KB
testcase_23 AC 341 ms
104,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
import bisect
from heapq import heapify, heappop, heappush
from collections import deque, defaultdict, Counter
from functools import lru_cache
from itertools import accumulate, combinations, permutations, product

sys.set_int_max_str_digits(10 ** 6)
sys.setrecursionlimit(1000000)
MOD = 10 ** 9 + 7
MOD99 = 998244353

input = lambda: sys.stdin.readline().strip()
NI = lambda: int(input())
NMI = lambda: map(int, input().split())
NLI = lambda: list(NMI())
SI = lambda: input()
SMI = lambda: input().split()
SLI = lambda: list(SMI())
EI = lambda m: [NLI() for _ in range(m)]


def main():
    N = NI()
    A = NLI()
    ans = 0
    for i, a in enumerate(A):
        tmp = 0
        tmp += pow(2, N-1, MOD99)
        tmp += (N-1) * pow(2, N-2, MOD99)
        tmp += i * (N-1-i) * pow(2, N-3, MOD99)
        ans += tmp * a
        ans %= MOD99
    print(ans)


if __name__ == "__main__":
    main()
0