結果

問題 No.2717 Sum of Subarray of Subsequence
ユーザー ecotteaecottea
提出日時 2024-02-03 18:55:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 102,216 KB
最終ジャッジ日時 2024-09-28 16:55:30
合計ジャッジ時間 3,096 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,440 KB
testcase_01 AC 34 ms
53,148 KB
testcase_02 AC 34 ms
52,280 KB
testcase_03 AC 34 ms
52,164 KB
testcase_04 AC 33 ms
53,112 KB
testcase_05 AC 34 ms
52,888 KB
testcase_06 AC 34 ms
52,532 KB
testcase_07 AC 34 ms
51,820 KB
testcase_08 AC 34 ms
52,156 KB
testcase_09 AC 104 ms
101,892 KB
testcase_10 AC 103 ms
101,808 KB
testcase_11 AC 105 ms
102,196 KB
testcase_12 AC 100 ms
101,748 KB
testcase_13 AC 102 ms
102,196 KB
testcase_14 AC 105 ms
101,904 KB
testcase_15 AC 100 ms
102,216 KB
testcase_16 AC 102 ms
102,092 KB
testcase_17 AC 105 ms
102,040 KB
testcase_18 AC 104 ms
101,892 KB
testcase_19 AC 103 ms
101,844 KB
testcase_20 AC 33 ms
53,312 KB
testcase_21 AC 34 ms
51,988 KB
testcase_22 AC 101 ms
102,012 KB
testcase_23 AC 70 ms
97,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))

MOD = 998244353

pow2 = pow(2, (MOD - 1) + (n - 3), MOD)

res = 0
for i in range(n):
    res += pow2 * a[i] * (i + 2) * (n - i + 1)

print(res % MOD)
0