Inspired by Problem 42831, this problem aims to calculate the integer complexity for large numbers. The integer complexity of a natural number n is defined as the least number of 1’s required to express n using only the two operations + and × and parentheses.

Example: the number 11 may be represented using 8 ones:

    11 = (1 + 1 + 1) × (1 + 1 + 1) + 1 + 1.

However, it has no representation using 7 or fewer ones. Therefore, its complexity is 8.

Your solution will be scored based on its running time. No cheating please.

Solution Stats

57 Solutions

23 Solvers

Last Solution submitted on Dec 02, 2025

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...

Problem Recent Solvers23

Suggested Problems

More from this Author28

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!