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

HDU5108

时间:2014-11-23 13:02:04      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   sp   for   

题意:给你一个正整数n, 找到一个最小的数m,使得n/m为质数。

题解:质因数分解

bubuko.com,布布扣
 1 #include <stdio.h>
 2 #include <string.h>
 3 #include <math.h>
 4 typedef long long ll;
 5 
 6 int main()
 7 {
 8     ll n;
 9     while( ~scanf( "%I64d", &n ) )
10     {
11         if( n == 1 )
12         {
13             puts( "0" );
14             continue;
15         }
16         ll ans = n, cnt;
17         for( ll i = 2; i*i <= n; ++i )
18             if( n % i == 0 )
19             {
20                 while( n % i == 0 ) {
21                     n /= i;
22                     cnt = i;
23                 }
24             }
25         if( n > 1 ) cnt = n;
26         printf( "%I64d\n", ans/cnt );
27     }
28     return 0;
29 }
View Code

 

HDU5108

标签:style   blog   http   io   ar   color   os   sp   for   

原文地址:http://www.cnblogs.com/ADAN1024225605/p/4116369.html

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