HDU 2028 Lowest Common Multiple Plus(水~)
2147 ワード
Descriptionがn個の数を求める最小公倍数Input入力には複数のテストインスタンスが含まれており、各テストインスタンスの最初は正の整数nであり、次にn個の正の整数Outputが各テストデータのセットに対してそれらの最小公倍数を出力し、各テストインスタンスの出力は1行を占める.最後の出力は32ビットの整数Sample Input 2 4 6 3 5 7 Sample Output 12 70 Solution水問題で、最小公倍数を2つ求めればCodeになります.
#include<cstdio>
#include<iostream>
using namespace std;
int gcd(int x,int y)
{
if(x%y) return gcd(y,x%y);
return y;
}
int main()
{
int n;
while(scanf("%d",&n)!=EOF)
{
int now,next;
int flag=0;
scanf("%d",&now);
for(int i=1;i<n;i++)
{
scanf("%d",&next);
now=next/gcd(now,next)*now;
}
printf("%d
",now);
}
return 0;
}