結果
問題 | No.1375 Divide and Update |
ユーザー | tktk_snsn |
提出日時 | 2021-02-05 22:18:55 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 652 bytes |
コンパイル時間 | 178 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 172,672 KB |
最終ジャッジ日時 | 2024-07-02 12:47:25 |
合計ジャッジ時間 | 4,523 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
52,096 KB |
testcase_01 | AC | 47 ms
51,840 KB |
testcase_02 | AC | 41 ms
51,584 KB |
testcase_03 | WA | - |
testcase_04 | AC | 42 ms
52,096 KB |
testcase_05 | WA | - |
testcase_06 | AC | 42 ms
52,224 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 183 ms
131,384 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 191 ms
138,620 KB |
ソースコード
from itertools import accumulate N, X, Y = map(int, input().split()) A = list(map(int, input().split())) sumA = list(accumulate(A, initial=0)) L = [X * i - s for i, s in enumerate(sumA)] R = [Y * i - s for i, s in enumerate(sumA)] cntL = [L[1] - L[0]] minL = min(L[0], L[1]) maxL = max(L[0], L[1]) for x in L[2:]: minL = min(minL, x) maxL = max(maxL, x) cntL.append(maxL - minL) cntR = [R[N] - R[N-1]] minR = min(R[N], R[N-1]) maxR = max(R[N], R[N-1]) for x in R[:-2][::-1]: minR = min(minR, x) maxR = max(maxR, x) cntR.append(maxR - minR) cntR.reverse() X = sum(A) for i in range(N - 2): print(X + cntL[i] + cntR[i+2])