程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> 343. Integer Break,343integerbreak

343. Integer Break,343integerbreak

編輯:JAVA綜合教程

343. Integer Break,343integerbreak


Given a positive integer n, break it into the sum of at least two positive integers and maximize the product of those integers. Return the maximum product you can get.

For example, given n = 2, return 1 (2 = 1 + 1); given n = 10, return 36 (10 = 3 + 3 + 4).

Note: you may assume that n is not less than 2.

思路:除了2和3以外,最終的結果是2和3的乘積,3多2少。

代碼如下:

 1 public class Solution {
 2     public int integerBreak(int n) {
 3         
 4         if(n==2)
 5         return 1;
 6         if(n==3)
 7         return 2;
 8         
 9         int result=1;
10         if(n%3==2)
11         {result=2;
12             n=n-2;
13         }
14         else if(n%3==1)
15         {
16             result=4;
17             n=n-4;
18         }
19         int count=n/3;
20         while(count>0)
21         {
22             result=result*3;
23             count--;
24         }
25         return result;
26     }
27 }

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved