C. Fadi and LCM

编程入门 行业动态 更新时间:2024-10-28 12:28:00

C. Fadi and <a href=https://www.elefans.com/category/jswz/34/1759096.html style=LCM"/>

C. Fadi and LCM

第二天叫醒我的不是闹钟,是梦想!

Today, Osama gave Fadi an integer X, and Fadi was wondering about the minimum possible value of max(a,b) such that LCM(a,b) equals X. Both a and b should be positive integers.

LCM(a,b) is the smallest positive integer that is divisible by both a and b. For example, LCM(6,8)=24, LCM(4,12)=12, LCM(2,3)=6.

Of course, Fadi immediately knew the answer. Can you be just like Fadi and find any such pair?

Input
The first and only line contains an integer X (1≤X≤1012).

Output
Print two positive integers, a and b, such that the value of max(a,b) is minimum possible and LCM(a,b) equals X. If there are several possible such pairs, you can print any.

Examples
inputCopy

2
outputCopy
1 2
inputCopy
6
outputCopy
2 3
inputCopy
4
outputCopy
1 4
inputCopy
1
outputCopy
1 1


#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
ll x,res,ans=0x3f3f3f3f;
ll lcm(ll a,ll b)
{return (a*b)/__gcd(a,b);
}
int main()
{scanf("%lld",&x);for(ll i=1;i<=x/i;i++){if(x%i==0&&lcm(i,x/i)==x){ans=i;}}cout<<ans<<" "<<x/ans<<endl;
}

更多推荐

C. Fadi and LCM

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

发布评论

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

>www.elefans.com

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