ACM HDU 1108最小公倍数(完全な水題)

3268 ワード

最小公倍数
Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 14564    Accepted Submission(s): 7651
Problem Description
2つの正の整数を与え、この2つの数の最小公倍数を計算します.
 
Input
1000以下の正の整数を2つ含む複数のテストデータを入力.
 
Output
各テスト・インスタンスについて、この2つの数の最小公倍数が与えられ、各インスタンスは1行出力される.
 
Sample Input
10 14
 
Sample Output
70
 
Source
POJ
 
Recommend
Eddy
 
#include<stdio.h>
#include
<algorithm>
using namespace std;
int a[10010];
int main()
{
int n;
while(scanf("%d",&n)!=EOF)
{
for(int i=0;i<n;i++)
scanf(
"%d",&a[i]);
sort(a,a
+n);
printf(
"%d
",a[n/2]);
}
return 0;
}