[Python] 백준 11653번 : 소인수분해

2021. 8. 19. 01:34

https://www.acmicpc.net/problem/11653

 

11653번: 소인수분해

첫째 줄에 정수 N (1 ≤ N ≤ 10,000,000)이 주어진다.

www.acmicpc.net

 

 

n = int(input())
a = 2

while n > 1:
  if n % a == 0:
    print(a)
    n = n//a
  else:
    a += 1

BELATED ARTICLES

more