码迷,mamicode.com
首页 > 其他好文 > 详细

Largest prime factor

时间:2017-01-16 19:28:30      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:.com   open   close   start   cte   exp   indicator   bsp   end   

problem 3:Largest prime factor

题意:求600851475143的最大的质因数

代码如下:

 1 #ifndef PRO3_H_INCLUDED
 2 #define PRO3_H_INCLUDED
 3 
 4 #include "prime.h"
 5 
 6 namespace pro3{
 7     long long solve(){
 8         long long n=600851475143LL,maxn=0;;
 9         for(long long i=1;i*i<=n;++i)
10         if(n%i==0){
11             if(isPrime(n/i))return n/i;
12             else if(isPrime(i))maxn=i;
13         }
14         return 1>maxn?1:maxn;
15     }
16 }
17 
18 #endif // PRO3_H_INCLUDED

其中,bool isPrime(long long x)如下(后面不再赘述):

技术分享
1 bool isPrime(long long x){
2     if(x<=1)return 0;
3     for(long long i=2;i*i<=x;++i)
4         if(x%i==0)return 0;
5     return 1;
6 }
bool isPrime(long long x)

 

Largest prime factor

标签:.com   open   close   start   cte   exp   indicator   bsp   end   

原文地址:http://www.cnblogs.com/barrier/p/6290728.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!