새로운 소수의 지평

This commit is contained in:
2020-05-07 20:13:23 +09:00
parent 5ea5d54770
commit 1f99cbe288
2 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
# 먼저 최대 개수까지 빈 리스트 만듬;
# 그 다음 반복문 돔
# 그리고 배수만큼을 없앰
# 그리고 반복

View File

@@ -0,0 +1,18 @@
c = 2; n =int(input()); P = []
if n == 1:
print(2)
else:
k = 3
while c <= n:
for p in P:
if k%p == 0:
break
if p**2 > k:
P.append(k)
c+=1
break
else:
P.append(k)
c+=1
k += 2
print(P[-1])