Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- x, cnt, nums = 700000, 0, 0
- while nums < 5:
- dls = {1, x}
- for d in range(2, int(x**0.5)+1):
- if x % d == 0:
- dls |= {d, x//d}
- if len(dls) > cnt:
- cnt = len(dls)
- nums += 1
- print(x, len(dls))
- x += 1
Advertisement
Add Comment
Please, Sign In to add comment