完全平方数

 #include<iostream>
using namespace std;
typedef long long LL;
int main()
{
    LL n;
    cin >>n;
    LL res = 1;
    for(LL i = 2; i * i <= n; i ++)
    {
        if(n % i == 0)
        {
            int cnt = 0;
            while(n % i == 0)cnt ++, n /= i;
            if(cnt % 2)res *= i;
        }
    }
    if(n > 1)res *= n;
    cout << res;
}
全部评论

相关推荐

10-11 17:30
湖南大学 C++
我已成为0offer的糕手:羡慕
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务