2019-07-16 23:09:53 +00:00
|
|
|
"""
|
2018-10-19 12:48:28 +00:00
|
|
|
Problem:
|
2019-07-16 23:09:53 +00:00
|
|
|
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(divisible with no
|
|
|
|
remainder) by all of the numbers from 1 to N?
|
|
|
|
"""
|
2018-10-19 12:48:28 +00:00
|
|
|
""" Euclidean GCD Algorithm """
|
2019-07-16 23:09:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
def gcd(x, y):
|
|
|
|
return x if y == 0 else gcd(y, x % y)
|
|
|
|
|
2018-10-19 12:48:28 +00:00
|
|
|
|
|
|
|
""" Using the property lcm*gcd of two numbers = product of them """
|
2019-07-16 23:09:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
def lcm(x, y):
|
|
|
|
return (x * y) // gcd(x, y)
|
|
|
|
|
|
|
|
|
|
|
|
def solution(n):
|
|
|
|
"""Returns the smallest positive number that is evenly divisible(divisible
|
|
|
|
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(20)
|
|
|
|
232792560
|
|
|
|
>>> solution(22)
|
|
|
|
232792560
|
|
|
|
"""
|
|
|
|
g = 1
|
|
|
|
for i in range(1, n + 1):
|
|
|
|
g = lcm(g, i)
|
|
|
|
return g
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2019-08-19 13:37:49 +00:00
|
|
|
print(solution(int(input().strip())))
|