You are given an integer array nums and a positive integer k.
You must choose exactly one subarray of nums and perform exactly one of the following operations:
k.k.
k, use the floor value of the division result.k, use the ceiling value of the division result.Return the maximum possible sum of a non-empty subarray in the resulting array.
Note that the subarray chosen for the operation and the subarray chosen for the sum may be different.
Example 1:
Input: nums = [1,-2,3,4,-5], k = 2
Output: 14
Explanation:
[3, 4] by 2.nums = [1, -2, 6, 8, -5].[6, 8], so the output is 6 + 8 = 14.Example 2:
Input: nums = [-5,-4,-3], k = 2
Output: -1
Explanation:
[-3] by 2.nums = [-5, -4, -1].[-1], so the output is -1.Constraints:
1 <= nums.length <= 105-105 <= nums[i] <= 1051 <= k <= 105Loading editor...
[1,-2,3,4,-5] 2