-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheuler35.py
57 lines (51 loc) · 1.04 KB
/
euler35.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from math import sqrt
a=[0 for x in range(1000100)]
a[0]=a[1]=1
for i in range(2,int(sqrt(1000100))):
if a[i]==0:
j=i*i
while j<=1000000:
a[j]=1
j+=i
print 'primes are done'
'''
for i in range(2,1000000):
if a[i]==0:
print i ,
'''
def list_to_number(a):
n=0
for i in a:
n=n*10+i
return n
def number_to_list(n):
a=[]
while n>0:
a.append(n%10)
n=n/10
a=a[::-1]
return a
sum=0
count=0
for i in range(11,1000000):
if a[i]==0:
#print i
temp=number_to_list(i)
n=len(temp)
for j in range(n):
c=temp[0]
temp=temp[1:n]
temp.append(c)
num=list_to_number(temp)
#print num ,
if(num<=1000000):
if a[num]==0:
continue
else:
break
else:
break
if j==n-1:
print i
count+=1
print count+4