結果

問題 No.1375 Divide and Update
ユーザー あかしあみどりあかしあみどり
提出日時 2023-03-17 21:49:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 684 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 140,288 KB
最終ジャッジ日時 2024-09-18 10:39:29
合計ジャッジ時間 6,171 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 39 ms
51,712 KB
testcase_08 AC 41 ms
52,096 KB
testcase_09 AC 41 ms
51,840 KB
testcase_10 AC 164 ms
110,708 KB
testcase_11 AC 146 ms
106,840 KB
testcase_12 AC 112 ms
103,296 KB
testcase_13 AC 111 ms
97,408 KB
testcase_14 AC 176 ms
135,992 KB
testcase_15 AC 169 ms
136,376 KB
testcase_16 AC 182 ms
135,992 KB
testcase_17 AC 181 ms
136,840 KB
testcase_18 AC 161 ms
136,704 KB
testcase_19 AC 157 ms
136,192 KB
testcase_20 AC 151 ms
140,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def oi(): return int(input())
def os(): return input()
def mi(): return list(map(int, input().split()))

# import sys
# input = sys.stdin.readline
# import sys
# sys.setrecursionlimit(10**8)
# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
input_count = 0

input_count = 0
N,X,Y = mi()
A = mi()
def calcList(A, NUM):
    acc = NUM-A[0]
    R = [NUM-A[0]]
    mins = min(0, NUM-A[0])
    maxs = NUM-A[0]
    for a in A[1:]:
        acc += (NUM-a)
        maxs = max(maxs, acc - mins)
        R.append(maxs)
        mins = min(mins, acc)

    return R
R = calcList(A,X)
L = calcList(A[::-1], Y)
L = L[::-1]
sums = sum(A)
for l, r in zip(L[2:],R[:-2]):
    print(l+r+sums)
0