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

sgu 102 Coprimes

时间:2014-05-15 17:25:24      阅读:306      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   java   c   

    太水了, 我都不忍心发题解, 但毕竟是sgu上一道题, 我试试能不能一直这么写下去,就是求phi,上代码

bubuko.com,布布扣
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <iostream>
#include <algorithm>
#include <cmath>
#define N 10010
using namespace std;

int get_phi(int n)
{
    int m = sqrt(n+0.5);
    int ans = n;
    for (int i = 2; i <= m; ++i)
        if (n % i == 0)
        {
            ans = ans / i * (i-1);
            while (n % i == 0) n /= i;
        }
    if (n > 1) ans = ans / n * (n-1);
    return ans;
}

int main()
{
    int n;
    scanf("%d", &n);
    printf("%d\n", get_phi(n));
}
bubuko.com,布布扣

 

sgu 102 Coprimes,布布扣,bubuko.com

sgu 102 Coprimes

标签:style   blog   class   code   java   c   

原文地址:http://www.cnblogs.com/handsomeJian/p/3729911.html

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