-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprob26.py
33 lines (26 loc) · 821 Bytes
/
prob26.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
longest_cycle = 0
for d in range(2, 1000):
num_digits = 0
numerators = []
numerator = 1
while True:
numerator *= 10
while numerator < d:
num_digits += 1
numerator *= 10
if numerator in numerators:
cycle_length = num_digits - numerators.index(numerator)
if cycle_length > longest_cycle:
longest_cycle = cycle_length
d_longest = d
break # found recurring cycle length
else:
numerators.append(numerator)
digit = numerator / d
r = numerator % d
if r == 0:
num_digits += 1
break # non-recurring
num_digits += 1
numerator = r
print longest_cycle, d_longest