컴공생의 다이어리
[파이썬, Python] 백준 2014번 : 소수의 곱 본문
백준 2014번 : 소수의 곱
내 코드
import heapq
k, n = map(int, input().split())
prime = list(map(int, input().split()))
h = prime[:]
heapq.heapify(h)
for i in range(n):
num = heapq.heappop(h)
for j in prime:
heapq.heappush(h, num * j)
if num % j == 0:
break
print(num)
728x90
'Development > Algorithm & Coding Test' 카테고리의 다른 글
[파이썬, Python] 백준 2075번 : N번째 큰 수 (0) | 2022.05.02 |
---|---|
[파이썬, Python] 백준 1012번 : 유기농 배추 (0) | 2022.05.01 |
[알고리즘] 계수 정렬(Counting Sort) (0) | 2022.04.28 |
[파이썬, Python] 백준 4948번 : 베르트랑 공준 (0) | 2022.04.27 |
[파이썬, Python] 백준 2346번 : 풍선 터뜨리기 (0) | 2022.04.23 |
Comments