Least Common Multiple
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Least Common Multiple相关的知识,希望对你有一定的参考价值。
Least Common Multiple
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 43071 Accepted Submission(s): 16184
#include<iostream>
using namespace std;
//求最大公约数
int gcd(int a,int b)//a<b
{
if(a==0) return b;
else
return gcd(b%a,a);
}
int main()
{
int instanceCount=0;
cin>>instanceCount;
while(instanceCount--)
{
int count=0;//每行个数
cin>>count;
int lcm=1;
int before=1;
int now=0;
for(int i=1;i<=count;i++)
{
cin>>now;
if(before==now) lcm=before;
if(before>now)
{
lcm=(before/gcd(now,before))*now;
}
else
{
lcm=(now/gcd(before,now))*before;
}
before=lcm;
}
cout<<lcm<<endl;
}
return 0;
}
以上是关于Least Common Multiple的主要内容,如果未能解决你的问题,请参考以下文章
HDU 1019 Least Common Multiple 数学题
hdu 1019 Least Common Multiple