結果

問題 No.2717 Sum of Subarray of Subsequence
ユーザー rlangevinrlangevin
提出日時 2024-04-07 14:57:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 102,212 KB
最終ジャッジ日時 2024-10-01 04:30:41
合計ジャッジ時間 3,391 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,348 KB
testcase_01 AC 40 ms
53,040 KB
testcase_02 AC 40 ms
52,680 KB
testcase_03 AC 38 ms
53,032 KB
testcase_04 AC 37 ms
53,352 KB
testcase_05 AC 43 ms
53,148 KB
testcase_06 AC 38 ms
53,744 KB
testcase_07 AC 38 ms
52,564 KB
testcase_08 AC 38 ms
52,428 KB
testcase_09 AC 124 ms
101,904 KB
testcase_10 AC 125 ms
101,704 KB
testcase_11 AC 125 ms
101,828 KB
testcase_12 AC 125 ms
102,056 KB
testcase_13 AC 125 ms
101,936 KB
testcase_14 AC 125 ms
102,072 KB
testcase_15 AC 127 ms
102,084 KB
testcase_16 AC 125 ms
101,824 KB
testcase_17 AC 127 ms
101,980 KB
testcase_18 AC 126 ms
101,804 KB
testcase_19 AC 124 ms
102,120 KB
testcase_20 AC 37 ms
52,216 KB
testcase_21 AC 38 ms
52,028 KB
testcase_22 AC 124 ms
102,212 KB
testcase_23 AC 85 ms
100,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
mod = 998244353
two = [1] * (N + 1)
for i in range(N):
    two[i + 1] = (two[i] * 2) % mod

def f(x):
    return (two[x] + x * two[x-1]) % mod

ans = 0
for i in range(N):
    ans += A[i] * f(i) * f(N - 1 - i)
    ans %= mod

print(ans)
0