杭电1019Least Common Multiple

题目链接:

http://acm.hdu.edu.cn/showproblem.php?pid=1019

解题思路:

Talk is cheap. Show me the code.

没有技巧全是感情

 1 #include<bits/stdc++.h>//hduoj1019lcm
 2 using namespace std;
 3 int a[1010];
 4 int lcm(int a,int b)
 5 {
 6     return a/__gcd(a,b)*b;
 7 }
 8 int main()
 9 {
10     std::ios::sync_with_stdio(false);
11     int t;
12     cin>>t;
13     while(t--)
14     {
15         int n;
16         cin>>n;
17         for(register int i=1;i<=n;i++)
18         cin>>a[i];
19         int ans=a[1];
20         for(register int i=2;i<=n;i++)
21         ans=lcm(ans,a[i]);
22         cout<<ans<<endl;
23     }
24     return 0;
25 }

 

posted @ 2022-05-04 14:49  江上舟摇  阅读(16)  评论(0编辑  收藏  举报