B. Duff in Love

编程入门 行业动态 更新时间:2024-10-06 18:32:06

B. <a href=https://www.elefans.com/category/jswz/34/1768014.html style=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 integera > 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.

Sample test(s) 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 islovely.

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 notlovely, while 6 is indeed lovely.


解题说明:此题是一道数学题,现有一列n的因子,找到一个最大的因子让其不能被某个数的平方整除。


#include<stdio.h>
#include <string.h>
#include<iostream>
#include<algorithm>
#include<cmath>
using namespace std;int main()
{long long n,s=1;int i;scanf("%lld",&n);for(i=2;i<=sqrt(n);++i){if(n%i==0){s*=i;while(n%i==0){n/=i;}}if(n==1){break;}}printf("%lld\n",s*n);return 0;
}


更多推荐

B. Duff in Love

本文发布于:2024-02-28 04:51:17,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1767982.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:Duff   Love

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!