Advertisement
pankovamg

Решето новое

Sep 27th, 2022 (edited)
770
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.39 KB | None | 0 0
  1. #факторизация с помощью решета Эратосфена a[i] = 0 если число простое, a[i] = j - делителю числа
  2. n = 100000
  3. a = [0] * (n + 1)
  4. i = 2
  5. while i * i <= n:
  6.     if not a[i]:
  7.         for j in range(i * i, n + 1, i):
  8.             a[j] = i
  9.     i+= 1
  10. y = int(input())
  11. b = []
  12. while a[y]:
  13.     b.append(a[y])
  14.     y //= a[y]
  15. b.append(y
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement