`
lilisalo
  • 浏览: 1105830 次
文章分类
社区版块
存档分类
最新评论

HDOJ/HDU 3864 多校联合 D_num 数论

 
阅读更多

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3864

题目:

D_num

Time Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 921Accepted Submission(s): 249


Problem Description
Oregon Maple was waiting for Bob When Bob go back home. Oregon Maple asks Bob a problem that as a Positive number N, if there are only four Positive number M makes Gcd(N, M) == M then we called N is a D_num. now, Oregon Maple has some Positive numbers, and if a Positive number N is a D_num , he want to know the four numbers M. But Bob have something to do, so can you help Oregon Maple?
Gcd is Greatest common divisor.

Input
Some cases (case < 100);
Each line have a numeral N(1<=N<10^18)

Output
For each N, if N is a D_NUM, then output the four M (if M > 1) which makes Gcd(N, M) = M. output must be Small to large, else output “is not a D_num”.

Sample Input
6 10 9

Sample Output
2 3 6 2 5 10 is not a D_num

Source

Recommend
lcy


题目意思很简单了主要难的地方在于数据量太大,所以必须用随机算法

但是要注意一种特殊情况,及某质数的三次方。


我的代码:





分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics