[Python] 백준 11653번 : 소인수분해
2021. 8. 19. 01:34
https://www.acmicpc.net/problem/11653
n = int(input())
a = 2
while n > 1:
if n % a == 0:
print(a)
n = n//a
else:
a += 1
'Programming > BOJ' 카테고리의 다른 글
[Python] 백준 1357번 : 뒤집힌 덧셈 (0) | 2021.08.19 |
---|---|
[Python] 백준 1292번 : 쉽게 푸는 문제 (0) | 2021.08.19 |
[Python] 백준 1157 : 단어 공부 (0) | 2021.08.19 |
[Python] 백준 1100번 : 하얀 칸 (0) | 2021.08.19 |
[Python] 백준 1026번 : 보물 (0) | 2021.08.19 |