[Project Euler] Problem 16

원문: Problem 16

2^(15) = 32768 and the sum of its digits is 3 + 2 + 7 + 6 + 8 = 26.

What is the sum of the digits of the number 2^(1000)?


2^(15) = 32768 그리고 그것의 자리수의 합은 3 + 2 + 7 + 6 + 8 = 26 이다.
숫자 2^(1000) 의 자리수의 합은 무엇인가?

Python
>>> sum(map(int, list(str(2**1000))))
접기

댓글 없음:

댓글 쓰기

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