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

利用质因数分解定理求与n互质的数的个数

时间:2021-04-26 14:12:06      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:--   csharp   main   fun   代码   class   logs   jpg   质因数   

今天我来分享一下如何利用素数分解定理求解与n互质的数的个数。

技术图片

下面是代码

#include<bits/stdc++.h>
using namespace std;
long long fun(int x)
{
	long long ans=x;
	int t=sqrt(x);
	int cnt;
	for(int i=2;i<=t;i++)
	{
		cnt=0;
		while(x%i==0)
		{
			x/=i;
			cnt++;
		}
		if(cnt) ans=ans*(i-1)/i;
	}
	if(x>1) ans=ans*(x-1)/x;
	return ans;
}
int main()
{
	int n;
	cin>>n;
	int t;
	while(n--)
	{
		cin>>t;
		printf("%lld\n",fun(t));
	}
	return 0;
}

  

利用质因数分解定理求与n互质的数的个数

标签:--   csharp   main   fun   代码   class   logs   jpg   质因数   

原文地址:https://www.cnblogs.com/AC--Dream/p/14702025.html

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