2019-07-16 23:09:53 +00:00
|
|
|
"""
|
2020-10-25 03:23:16 +00:00
|
|
|
Project Euler Problem 5: https://projecteuler.net/problem=5
|
2019-07-16 23:09:53 +00:00
|
|
|
|
2020-10-25 03:23:16 +00:00
|
|
|
Smallest multiple
|
|
|
|
|
|
|
|
2520 is the smallest number that can be divided by each of the numbers
|
|
|
|
from 1 to 10 without any remainder.
|
|
|
|
|
|
|
|
What is the smallest positive number that is _evenly divisible_ by all
|
|
|
|
of the numbers from 1 to 20?
|
|
|
|
|
|
|
|
References:
|
|
|
|
- https://en.wiktionary.org/wiki/evenly_divisible
|
|
|
|
- https://en.wikipedia.org/wiki/Euclidean_algorithm
|
|
|
|
- https://en.wikipedia.org/wiki/Least_common_multiple
|
2019-07-16 23:09:53 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
|
2022-07-24 16:03:10 +00:00
|
|
|
def greatest_common_divisor(x: int, y: int) -> int:
|
2020-10-25 03:23:16 +00:00
|
|
|
"""
|
2022-07-24 16:03:10 +00:00
|
|
|
Euclidean Greatest Common Divisor algorithm
|
2019-07-16 23:09:53 +00:00
|
|
|
|
2022-07-24 16:03:10 +00:00
|
|
|
>>> greatest_common_divisor(0, 0)
|
2020-10-25 03:23:16 +00:00
|
|
|
0
|
2022-07-24 16:03:10 +00:00
|
|
|
>>> greatest_common_divisor(23, 42)
|
2020-10-25 03:23:16 +00:00
|
|
|
1
|
2022-07-24 16:03:10 +00:00
|
|
|
>>> greatest_common_divisor(15, 33)
|
2020-10-25 03:23:16 +00:00
|
|
|
3
|
2022-07-24 16:03:10 +00:00
|
|
|
>>> greatest_common_divisor(12345, 67890)
|
2020-10-25 03:23:16 +00:00
|
|
|
15
|
|
|
|
"""
|
2018-10-19 12:48:28 +00:00
|
|
|
|
2022-07-24 16:03:10 +00:00
|
|
|
return x if y == 0 else greatest_common_divisor(y, x % y)
|
2019-07-16 23:09:53 +00:00
|
|
|
|
|
|
|
|
2020-10-08 03:20:11 +00:00
|
|
|
def lcm(x: int, y: int) -> int:
|
2020-10-25 03:23:16 +00:00
|
|
|
"""
|
|
|
|
Least Common Multiple.
|
|
|
|
|
2022-07-24 16:03:10 +00:00
|
|
|
Using the property that lcm(a, b) * greatest_common_divisor(a, b) = a*b
|
2020-10-25 03:23:16 +00:00
|
|
|
|
|
|
|
>>> lcm(3, 15)
|
|
|
|
15
|
|
|
|
>>> lcm(1, 27)
|
|
|
|
27
|
|
|
|
>>> lcm(13, 27)
|
|
|
|
351
|
|
|
|
>>> lcm(64, 48)
|
|
|
|
192
|
|
|
|
"""
|
|
|
|
|
2022-07-24 16:03:10 +00:00
|
|
|
return (x * y) // greatest_common_divisor(x, y)
|
2019-07-16 23:09:53 +00:00
|
|
|
|
|
|
|
|
2020-10-08 03:20:11 +00:00
|
|
|
def solution(n: int = 20) -> int:
|
2020-10-25 03:23:16 +00:00
|
|
|
"""
|
|
|
|
Returns the smallest positive number that is evenly divisible (divisible
|
2019-07-16 23:09:53 +00:00
|
|
|
with no remainder) by all of the numbers from 1 to n.
|
2019-08-19 13:37:49 +00:00
|
|
|
|
2019-07-16 23:09:53 +00:00
|
|
|
>>> solution(10)
|
|
|
|
2520
|
|
|
|
>>> solution(15)
|
|
|
|
360360
|
|
|
|
>>> solution(22)
|
|
|
|
232792560
|
|
|
|
"""
|
2020-10-25 03:23:16 +00:00
|
|
|
|
2019-07-16 23:09:53 +00:00
|
|
|
g = 1
|
|
|
|
for i in range(1, n + 1):
|
|
|
|
g = lcm(g, i)
|
|
|
|
return g
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2020-10-25 03:23:16 +00:00
|
|
|
print(f"{solution() = }")
|