suppose we are given N numbers a1,a2,a3....aN. Now how to write a program which calculates the Lcm of these numbers.....
| # | User | Rating |
|---|---|---|
| 1 | jiangly | 3810 |
| 2 | Benq | 3676 |
| 3 | Kevin114514 | 3655 |
| 4 | maroonrk | 3463 |
| 5 | strapple | 3447 |
| 6 | Um_nik | 3387 |
| 7 | heuristica | 3322 |
| 8 | turmax | 3317 |
| 9 | tourist | 3307 |
| 10 | jiangbowen | 3291 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 156 |
| 2 | nik_exists | 150 |
| 2 | maspy | 150 |
| 4 | Um_nik | 141 |
| 5 | Errichto | 139 |
| 6 | adamant | 137 |
| 7 | AmShZ | 135 |
| 8 | BledDest | 132 |
| 9 | maroonrk | 131 |
| 10 | qwexd | 129 |
| Name |
|---|



lcm(a1,a2) = a1 * a2 / gcd(a1,a2).
lcm(a1,a2,a3) = lcm( lcm(a1,a2) , a3).
And then continue this process for all numbers.
You can calculate their GCD and use this formula: LCM(a1,...,aN)*GCD(a1,...,aN) = a1*a2*...*aN
UPD: Oh, sorry it's really incorrect.
lcm(2, 2, 2) * gcd(2, 2, 2) != 2*2*2
This formula isn't correct. For example, a1 = 2, a2 = 4, a3 = 5. LCM(a1,a2,a3) = 20, GCD(a1,a2,a3) = 1, a1*a2*a3 = 40. And LCM(a1,a2,a3) * GCD(a1,a2,a3) != a1*a2*a3.
lcm(a,b) = a*b/gcd(a,b)
lcm(a1,a2,...an) = lcm(a1,lcm(a2,lcm(a3,lcm(... , an))))
i have used the same concept.... for calculating the lcm of first 20 natural numbers my code is as follows... but the answer is not coming correct
Integer overflow while calculating a*b. Use a/gcd(a,b)*b instead.
but an int can store upto 2X10^9 then how can overflow take place..
lcm(2..19) = 232792560
232792560*20 > 4e9.
thanks a lot Hohol i finally got it right.. by the way i want to tell u that i have suffered a lot due to integer overflows... how to improve my mistakes for overflows??? can u suggest me something
Every time you multiple think about maximum value. cast it to int64, if you need