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

hdu1286(找新朋友)

时间:2014-11-23 00:31:28      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   os   sp   for   div   log   

 

#include <iostream>
#include <cstring>
#include <cstdio>
#include <algorithm>
using namespace std;

int main()
{
    int T,temp,ans,n;
    cin>>T;
    while(T--)
    {
        cin>>n;
        temp=n;
        ans=n;
        for(int i=2; i*i<=n; i++)
        {
            if(n%i==0)
            {
                ans=ans/i*(i-1);
                n/=i;
                while(n%i==0)
                {
                    n/=i;
                }
            }
        }
        if(n!=1)
        {
            ans=ans/n*(n-1);
        }
        printf("%d\n",temp==1?0:ans);
    }
    return 0;
}

 

hdu1286(找新朋友)

标签:style   blog   io   color   os   sp   for   div   log   

原文地址:http://www.cnblogs.com/zhangmingcheng/p/4115987.html

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