2019-10-27 18:07:04 +00:00
|
|
|
|
"""
|
2020-10-07 09:59:55 +00:00
|
|
|
|
Problem 20: https://projecteuler.net/problem=20
|
|
|
|
|
|
2019-10-27 18:07:04 +00:00
|
|
|
|
n! means n × (n − 1) × ... × 3 × 2 × 1
|
|
|
|
|
|
|
|
|
|
For example, 10! = 10 × 9 × ... × 3 × 2 × 1 = 3628800,
|
|
|
|
|
and the sum of the digits in the number 10! is 3 + 6 + 2 + 8 + 8 + 0 + 0 = 27.
|
|
|
|
|
|
|
|
|
|
Find the sum of the digits in the number 100!
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
2020-10-07 09:59:55 +00:00
|
|
|
|
def solution(num: int = 100) -> int:
|
|
|
|
|
"""Returns the sum of the digits in the factorial of num
|
2019-10-27 18:07:04 +00:00
|
|
|
|
>>> solution(100)
|
|
|
|
|
648
|
|
|
|
|
>>> solution(50)
|
|
|
|
|
216
|
|
|
|
|
>>> solution(10)
|
|
|
|
|
27
|
|
|
|
|
>>> solution(5)
|
|
|
|
|
3
|
|
|
|
|
>>> solution(3)
|
|
|
|
|
6
|
|
|
|
|
>>> solution(2)
|
|
|
|
|
2
|
|
|
|
|
>>> solution(1)
|
|
|
|
|
1
|
|
|
|
|
"""
|
|
|
|
|
fact = 1
|
|
|
|
|
result = 0
|
2020-10-07 09:59:55 +00:00
|
|
|
|
for i in range(1, num + 1):
|
2019-10-27 18:07:04 +00:00
|
|
|
|
fact *= i
|
|
|
|
|
|
|
|
|
|
for j in str(fact):
|
|
|
|
|
result += int(j)
|
|
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
print(solution(int(input("Enter the Number: ").strip())))
|