标签:continue alt one ret lis for opened stream ima
1个数N(N <= 10^9)
公约数之和
6
15
为什么呢?
主要思路:枚举最大公约数,然后求出同个最大公约数的数字的数量
然后把这些加起来就行了
最后需要额外加上 1 和 n 的情况
那么对于每个最大公约数,只要除去这个最大公约数,那么数 a 和 n 就互质了
因此这个数量就是
那么对于每一个 n 的因数,我们都这么叠加一下就行。
Code代码
1 #include<cstdio> 2 #include<iostream> 3 #define LL long long 4 using namespace std; 5 6 LL x; 7 8 LL euler(LL x){ 9 LL ans = 1; 10 for(LL i = 2;i*i <= x;i++){ 11 if(x%i) continue; 12 ans *= i-1; 13 x /= i; 14 while(x%i == 0){ 15 ans *= i; 16 x /= i; 17 } 18 }if(x > 1) ans *= x-1; 19 return ans; 20 } 21 22 int main(){ 23 scanf("%I64d",&x); 24 25 LL tot = 0; 26 27 for(int i = 1;i*i <= x;i++){ 28 if(x%i) continue; 29 LL t = x/i; 30 tot += i*euler(t); 31 if(i != t) tot += t*euler(x/t); 32 }cout << tot; 33 34 return 0; 35 }
标签:continue alt one ret lis for opened stream ima
原文地址:http://www.cnblogs.com/Chorolop/p/7691889.html