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

临时代码。

时间:2014-05-13 18:07:32      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   c   tar   

zoj 3673

bubuko.com,布布扣
 1 /**
 2 6700417
 3 **/
 4 #include<iostream>
 5 #include<stdio.h>
 6 #include<cstring>
 7 #include<cstdlib>
 8 #include<algorithm>
 9 using namespace std;
10 
11 typedef unsigned long long LL;
12 
13 LL Euler(LL n)
14 {
15     LL i,temp=0;
16     for(i=2;i*i<=n;i++)
17     {
18         if(n%i==0)
19         {
20             while(n%i==0)
21                 n=n/i;
22             if(i>temp) temp = i;
23         }
24     }
25     if(n>temp) temp = n;
26     printf("%llu\n",temp);
27 }
28 int main()
29 {
30     Euler(18446744073709551615);
31     return 0;
32 }
View Code

 

 

临时代码。,布布扣,bubuko.com

临时代码。

标签:style   blog   class   code   c   tar   

原文地址:http://www.cnblogs.com/tom987690183/p/3724338.html

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