24 lines
634 B
Python

#!/usr/bin/env python3
# 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?
from projecteuler import lcmm, timing
@timing
def p005() -> None:
values = (1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
11, 12, 13, 14, 15, 16, 17, 18, 19, 20)
# Function define in projecteuler.py to find the least common multiple of multiple numbers.
res = lcmm(values, 20)
print('Project Euler, Problem 5')
print(f'Answer: {res}')
if __name__ == '__main__':
p005()