luogu P2043质因数分解

Posted xrj1229

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了luogu P2043质因数分解相关的知识,希望对你有一定的参考价值。

质因数分解题面


题解做法:没有用把阶乘算出来就得出了答案( ⊙ 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质因数分解的主要内容,如果未能解决你的问题,请参考以下文章

P2043 质因子分解

luogu P2043 质因子分解

Luogu P2043 质因子分解

Luogu P1075 质因数分解题解

P2043 质因子分解

「Luogu P2508」[HAOI2008]圆上的整点 解题报告