You are given an integer array nums.
You can perform the following operation any number of times:
a and b such that nums[a] % nums[b] == 0.nums[a] with nums[b].Return the minimum possible sum of the array after performing any number of operations.
Example 1:
Input: nums = [3,6,2]
Output: 7
Explanation:
a = 1, b = 2, where nums[a] = 6 and nums[b] = 2. Since 6 % 2 == 0, replace nums[1] with nums[2].[3, 2, 2].3 + 2 + 2 = 7.Example 2:
Input: nums = [4,2,8,3]
Output: 9
Explanation:
a = 0, b = 1, where nums[a] = 4 and nums[b] = 2. Since 4 % 2 == 0, replace nums[0] with nums[1].a = 2, b = 1, where nums[a] = 8 and nums[b] = 2. Since 8 % 2 == 0, replace nums[2] with nums[1].[2, 2, 2, 3].2 + 2 + 2 + 3 = 9.Example 3:
Input: nums = [7,5,9]
Output: 21
Explanation:
(a, b) such that nums[a] % nums[b] == 0.7 + 5 + 9 = 21.Constraints:
1 <= nums.length <= 1051 <= nums[i] <= 105Loading editor...
[3,6,2]