441. Arranging Coins
Easy
Last updated
Easy
Last updated
You have n
coins and you want to build a staircase with these coins. The staircase consists of k
rows where the ith
row has exactly i
coins. The last row of the staircase may be incomplete.
Given the integer n
, return the number of complete rows of the staircase you will build.
Example 1:
Example 2:
Constraints:
1 <= n <= 231 - 1
Binary search + 總和公式 : 1~k的和等於 k(1+k)/2