博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 1164 Eddy's research I【素数筛选法】
阅读量:4330 次
发布时间:2019-06-06

本文共 1252 字,大约阅读时间需要 4 分钟。

思路:将输入的这个数分成n个素数的相乘的结果,用一个数组存储起来。之后再输出就能够了

Eddy's research I

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


Problem Description
Eddy's interest is very extensive, recently he is interested in prime number. Eddy discover the all number owned can be divided into the multiply of prime number, but he can't write program, so Eddy has to ask intelligent you to help him, he asks you to write a program which can do the number to divided into the multiply of prime number factor .
 

Input
The input will contain a number 1 < x<= 65535 per line representing the number of elements of the set.
 

Output
You have to print a line in the output for each entry with the answer to the previous question.
 

Sample Input
 
11 9412
 

Sample Output
 
11 2*2*13*181
 

Author
eddy
 

#include
#include
int a[55];int getprime(int x){ memset(a,0,sizeof(a)); int i,cnt=0; for(i=2; i<=x; i++) { while(x%i==0) { a[cnt++]=i; x=x/i; } } return cnt;}int main(){ int n; while(~scanf("%d",&n)) { int k,i; k=getprime(n); for(i=0; i

转载于:https://www.cnblogs.com/blfshiye/p/4374374.html

你可能感兴趣的文章
优雅的程序员
查看>>
oracle之三 自动任务调度
查看>>
Android dex分包方案
查看>>
ThreadLocal为什么要用WeakReference
查看>>
删除本地文件
查看>>
FOC实现概述
查看>>
base64编码的图片字节流存入html页面中的显示
查看>>
这个大学时代的博客不在维护了,请移步到我的新博客
查看>>
GUI学习之二十一——QSlider、QScroll、QDial学习总结
查看>>
nginx反向代理docker registry报”blob upload unknown"解决办法
查看>>
gethostbyname与sockaddr_in的完美组合
查看>>
kibana的query string syntax 笔记
查看>>
旋转变换(一)旋转矩阵
查看>>
thinkphp3.2.3 bug集锦
查看>>
[BZOJ 4010] 菜肴制作
查看>>
C# 创建 读取 更新 XML文件
查看>>
KD树
查看>>
VsVim - Shortcut Key (快捷键)
查看>>
C++练习 | 模板与泛式编程练习(1)
查看>>
HDU5447 Good Numbers
查看>>