[Python] BOJ 1929번. 소수 구하기

1929번. 소수 구하기

문제 링크

풀이 코드

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 1929번. 소수 구하기

import sys
input = sys.stdin.readline

m, n = map(int, input().split())
max = 1000000


# 에라스토테네스의 체
def etc(max):
    pList = [True]*max
    mnum = int(max**0.5)
    for i in range(2, mnum+1):
        if pList[i]:
            for j in range(i+i, max, i):
                pList[j] = False
        else:
            continue
    return [i for i in range(2, max) if pList[i]]


pList = etc(max)
for p in pList:
    if p >= m and p <= n:
        print(p)

비고