All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g0301_0400.s0343_integer_break.readme.md Maven / Gradle / Ivy

There is a newer version: 1.24
Show newest version
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:**

**Input:** n = 2

**Output:** 1

**Explanation:** 2 = 1 + 1, 1 × 1 = 1.

**Example 2:**

**Input:** n = 10

**Output:** 36

**Explanation:** 10 = 3 + 3 + 4, 3 × 3 × 4 = 36.

**Constraints:**

*   `2 <= n <= 58`




© 2015 - 2024 Weber Informatics LLC | Privacy Policy