Codeforces 588B Duff in Love【暴力】水题

B. Duff in Love
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Duff is in love with lovely numbers! A positive integer x is called lovely if and only if there is no such positive integer a > 1 such that a2 is a divisor of x.

Malek has a number store! In his store, he has only divisors of positive integer n (and he has all of them). As a birthday present, Malek wants to give her a lovely number from his store. He wants this number to be as big as possible.

Malek always had issues in math, so he asked for your help. Please tell him what is the biggest lovely number in his store.

Input

The first and only line of input contains one integer, n (1 ≤ n ≤ 1012).

Output

Print the answer in one line.

Examples
Input
10
Output
10
Input
12
Output
6
Note

In first sample case, there are numbers 1, 2, 5 and 10 in the shop. 10 isn't divisible by any perfect square, so 10 is lovely.

In second sample case, there are numbers 1, 2, 3, 4, 6 and 12 in the shop. 12 is divisible by 4 = 22, so 12 is not lovely, while 6 is indeed lovely.


题目大意:


然你找到n的因子中(除了1以外)的最大的数,使得满足条件:

这个最大的因子数不能整除任意的平方数。


思路:


1、最大的因子可能是1e12.那么遍历平方数的时候需要O(sqrt(n))去遍历。


2、遍历找因子数的时候,同样需要O(sqrt(n))去遍历。

如果两层放在一起就是O(n)了吗?

显然不是,我们知道,对于一个数来讲,其因子数的个数不会很多,所以暴力找因子数然后O(sqrt(n))去遍历平方数是不会超时的。


Ac代码:

#include<stdio.h>
#include<string.h>
#include<math.h>
#include<iostream>
using namespace std;
#define ll __int64
int main()
{
    ll n;
    while(~scanf("%I64d",&n))
    {
        ll output=0;
        for(ll i=1;i<=sqrt(n);i++)
        {
            if(n%i==0)
            {
                int flag=0;
                for(ll j=2;j<=1000000;j++)
                {
                    if(i%(j*j)==0)
                    {
                        flag=1;break;
                    }
                }
                if(flag==0)output=max(output,i);
                flag=0;
                for(ll j=2;j<=1000000;j++)
                {
                    if((n/i)%(j*j)==0)
                    {
                        flag=1;break;
                    }
                }
                if(flag==0)output=max(output,n/i);
            }
        }
        printf("%I64d\n",output);
    }
}







  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值