Python/project_euler/problem_20/sol1.py

52 lines
1.0 KiB
Python
Raw Normal View History

"""
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!
"""
2018-10-19 12:48:28 +00:00
def factorial(n):
fact = 1
for i in range(1, n + 1):
2018-10-19 12:48:28 +00:00
fact *= i
return fact
2018-10-19 12:48:28 +00:00
def split_and_add(number):
"""Split number digits and add them."""
2018-10-19 12:48:28 +00:00
sum_of_digits = 0
while number > 0:
2018-10-19 12:48:28 +00:00
last_digit = number % 10
sum_of_digits += last_digit
number = number // 10 # Removing the last_digit from the given number
2018-10-19 12:48:28 +00:00
return sum_of_digits
def solution(n):
"""Returns the sum of the digits in the number 100!
>>> solution(100)
648
>>> solution(50)
216
>>> solution(10)
27
>>> solution(5)
3
>>> solution(3)
6
>>> solution(2)
2
>>> solution(1)
1
"""
f = factorial(n)
result = split_and_add(f)
return result
2018-10-19 12:48:28 +00:00
if __name__ == "__main__":
print(solution(int(input("Enter the Number: ").strip())))