zoukankan      html  css  js  c++  java
  • B. 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.

    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 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的素因子的乘积、记住与因子相关的都可以尝试着向素数方面靠、、

    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <string>
    #include <algorithm>
    #include <cstdlib>
    using namespace std;
    
    typedef long long int LL ;
    
    int main() {
    	LL n;
    	cin >> n;
    	LL res = 1;
    	for (LL i = 2; i*i<=n; i++) {
    		if (n %i ==0) {
    			res *= i;
    			while (n %i == 0)
    				n /= i;
    		}
    	}
    	cout << res*n<< endl;
    	
    	return 0;
    }



  • 相关阅读:
    L378 Scientifically, this is the best age for you to lead
    L376 Unleashing Your True Potential
    L375 爱情和事业平衡
    L374 企鹅
    2019-05-12 L373 英国要被淹
    2019-05-10 Business Meeting-Meeting Notice
    子类能不能继承父类的成员变量
    Java 重写(Override)与重载(Overload)
    java 类访问权限
    IS-A 和 HAS-A
  • 原文地址:https://www.cnblogs.com/Tovi/p/6194842.html
Copyright © 2011-2022 走看看