Maximum Subarray Sum With Length Divisible by K
You are given an array of integers nums and an integer k.
Return the maximum sum of a subarray of nums, such that the size of the subarray is divisible by k.
Example 1
Input
nums = [1,2], k = 1Output
3The subarray
[1, 2] with sum 3 has length equal to 2 which is divisible by 1.Example 2
Input
nums = [-1,-2,-3,-4,-5], k = 4Output
-10The maximum sum subarray is
[-1, -2, -3, -4] which has length equal to 4 which is divisible by 4.Constraints
- 1 <= k <= nums.length <= 2 * 10^5
- -10^9 <= nums[i] <= 10^9