結果

問題 No.1375 Divide and Update
ユーザー H3PO4H3PO4
提出日時 2022-04-21 10:39:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 213 ms / 2,000 ms
コード長 467 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 81,648 KB
実行使用メモリ 143,020 KB
最終ジャッジ日時 2024-06-22 09:46:18
合計ジャッジ時間 5,522 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,904 KB
testcase_01 AC 40 ms
51,684 KB
testcase_02 AC 40 ms
53,844 KB
testcase_03 AC 36 ms
52,944 KB
testcase_04 AC 36 ms
52,572 KB
testcase_05 AC 36 ms
53,552 KB
testcase_06 AC 36 ms
51,620 KB
testcase_07 AC 36 ms
52,968 KB
testcase_08 AC 37 ms
52,200 KB
testcase_09 AC 37 ms
52,616 KB
testcase_10 AC 193 ms
129,376 KB
testcase_11 AC 174 ms
121,200 KB
testcase_12 AC 118 ms
98,640 KB
testcase_13 AC 116 ms
97,960 KB
testcase_14 AC 201 ms
142,764 KB
testcase_15 AC 213 ms
143,020 KB
testcase_16 AC 204 ms
140,836 KB
testcase_17 AC 202 ms
140,440 KB
testcase_18 AC 183 ms
141,044 KB
testcase_19 AC 181 ms
140,392 KB
testcase_20 AC 181 ms
122,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X, Y = map(int, input().split())
A = tuple(map(int, input().split()))

S = sum(A)


def solve_left(B, Z):
    acc = 0
    res = -float("INF")
    max_val = 0
    for b in B[:-2]:
        acc += b - Z
        if res < max_val - acc:
            res = max_val - acc
        if max_val < acc:
            max_val = acc
        yield res


l_res = tuple(solve_left(A, X))
r_res = tuple(solve_left(A[::-1], Y))[::-1]
for l, r in zip(l_res, r_res):
    print(S + l + r)
0