forked from nayuki/Project-Euler-solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathp005.java
More file actions
38 lines (29 loc) · 1.09 KB
/
p005.java
File metadata and controls
38 lines (29 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
* Solution to Project Euler problem 5
* Copyright (c) Project Nayuki. All rights reserved.
*
* https://www.nayuki.io/page/project-euler-solutions
* https://github.com/nayuki/Project-Euler-solutions
*/
import java.math.BigInteger;
public final class p005 implements EulerSolution {
public static void main(String[] args) {
System.out.println(new p005().run());
}
/*
* The smallest number n that is evenly divisible by every number in a set {k1, k2, ..., k_m}
* is also known as the lowest common multiple (LCM) of the set of numbers.
* The LCM of two natural numbers x and y is given by LCM(x, y) = x * y / GCD(x, y).
* When LCM is applied to a collection of numbers, it is commutative, associative, and idempotent.
* Hence LCM(k1, k2, ..., k_m) = LCM(...(LCM(LCM(k1, k2), k3)...), k_m).
*/
public String run() {
BigInteger allLcm = BigInteger.ONE;
for (int i = 1; i <= 20; i++)
allLcm = lcm(BigInteger.valueOf(i), allLcm);
return allLcm.toString();
}
private static BigInteger lcm(BigInteger x, BigInteger y) {
return x.divide(x.gcd(y)).multiply(y);
}
}