51nod 1012最小公倍数LCM

Posted 浅忆

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了51nod 1012最小公倍数LCM相关的知识,希望对你有一定的参考价值。

输入2个正整数A,B,求A与B的最小公倍数。

 
Input
2个数A,B,中间用空格隔开。(1<= A,B <= 10^9)
 
Output
输出A与B的最小公倍数。
 
Input示例
30 105
 
Output示例
210

最小公倍数与最大公约数之间有联系

 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 typedef long long ll;
 4 ll gcd(ll x,ll y){
 5     return y?gcd(y,x%y):x;
 6 }
 7 
 8 ll gbs(ll x,ll y){
 9     return x/gcd(x,y)*y;
10 }
11       
12 int main(){
13     ll a,b; 
14     scanf("%lld %lld",&a, &b);
15     ll ans=gbs(a,b); 
16     printf("%lld\n",ans);
17     return 0; 
18 } 

 

以上是关于51nod 1012最小公倍数LCM的主要内容,如果未能解决你的问题,请参考以下文章

51nod 1012最小公倍数LCM

51NOD-01012 最小公倍数LCM

51nod 1434 区间LCM 素数

51NOD 1434 区间LCM(素数筛)

51nod 1190 最小公倍数之和 V2

1012 最小公倍数LCM