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

luogu P2043质因数分解

时间:2018-06-27 22:22:55      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:under   main   ret   ati   space   problem   P20   i++   lan   

质因数分解题面


题解做法:没有用把阶乘算出来就得出了答案( ⊙ o ⊙ )啊!神奇呢!

#include<iostream>
#include<cstdio>

using namespace std;

int a[10001],n;
int main()
{
	scanf("%d",&n);
	for(int i=2;i<=n;i++)
	{
		int w=i;
		for(int j=2;j<=i;j++)
		while(w%j==0)
		{
			a[j]++;
			w=w/j;
		}
	}
	for(int i=1;i<=10000;i++)
	if(a[i]!=0)
	cout<<i<<" "<<a[i]<<endl;
	return 0;
}

  

luogu P2043质因数分解

标签:under   main   ret   ati   space   problem   P20   i++   lan   

原文地址:https://www.cnblogs.com/xrj1229/p/9235942.html

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