dxnge

tsk 12

Nov 12th, 2021
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.26 KB | None | 0 0
  1. for i in range(333555, 777999+1):
  2.     dls = set()
  3.     for d in range(10, 100):
  4.         if i % d == 0:
  5.             dls |= {d}
  6.     if len(dls) == 35:
  7.         print(i, min(dls), max(dls))
  8. #524160 10 96
  9. #540540 10 99
  10. #582120 10 99
  11. #589680 10 91
  12. #637560 10 99
  13.  
Advertisement
Add Comment
Please, Sign In to add comment