Problem 036

git-svn-id: file:///srv/svn/euler@60 e5f4c3ec-3c0c-11df-b522-21efaa4426b5
This commit is contained in:
Correl Roush 2010-05-04 12:54:43 +00:00
parent 793812b67b
commit 8bc3076a0d

19
e036.py Normal file
View file

@ -0,0 +1,19 @@
MAX = 1000000
def binary(n):
return '{0:b}'.format(n)
if __name__ == '__main__':
total = 0
i = 0
while i < MAX:
i = i + 1
n = str(i)
if n != n[::-1]:
continue
b = binary(i)
if b != b[::-1]:
continue
print n, b
total = total + i
print 'Total:', total