343. Integer Break
Medium
Given an integer n
, break it into the sum of k
positive integers, where k >= 2
, and maximize the product of those integers.
Return the maximum product you can get.
Example 1:
Example 2:
Constraints:
2 <= n <= 58
解題
DP
Runtime: 0 ms, faster than 100%
Memory Usage: 1.9 MB, less than 88.71%
Last updated