[Project Euler] Problem 20

원문: Problem 20
n! means n × (n − 1) × ... × 3 × 2 × 1
Find the sum of the digits in the number 100!

n! 은 n × (n − 1) × ... × 3 × 2 × 1 을 의미한다.
숫자 100! 에 있는 자리수들의 합을 찾아라.

Python
>>> import math
>>> sum(map(int, str(math.factorial(100))))
접기

댓글 없음:

댓글 쓰기

크리에이티브 커먼즈 라이선스