일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 27 | 28 |
29 | 30 | 31 |
Tags
- 파이썬
- 코틀린
- 매일11시
- Combination
- 11053
- Android
- 1260
- 11기
- itertools
- 최소공배수
- 6603
- LCS
- lcm
- 앱
- 괄호
- 안드로이드
- Kotlin
- Python
- expo
- permutation
- 순열
- 11057
- 홈화면
- 뒤로가기
- 9095
- 나머지
- 11054
- 백준
- 1182
- 코테
Archives
- Today
- Total
황소개발자
백준 1978 파이썬 python : 소수 찾기 @@황소처럼 우직하게@@ 에라토네스의 체 본문
반응형
import sys
input = sys.stdin.readline
n = int(input())
num_list = list(map(int, input().split()))
num_max = max(num_list)
mat = [1 for i in range(num_max + 1)]
mat[1] = 0
i = 2
while i <= num_max:
if mat[i] == 1:
for j in range(i + i, num_max + 1, i):
mat[j] = 0
i += 1
ans = 0
for x in num_list:
if mat[x] == 1:
ans += 1
print(ans)
반응형
'백준 문제 풀이' 카테고리의 다른 글
파이썬에서 삼항연산자는 이렇게 사용하자 (0) | 2020.02.27 |
---|---|
백준 6588 파이썬 python : 골드바흐의 추측 @@황소처럼 우직하게@@ 에레토스테네스의 체 + 최적화 (0) | 2020.02.27 |
백준 9613 파이썬 python : GCD 합 @@황소처럼 우직하게@@ (0) | 2020.02.27 |
백준 1934 파이썬 python : 최소공배수 @@황소처럼 우직하게@@ 숏코딩 (0) | 2020.02.27 |
백준 2609 파이썬 python : 최대공약수와 최소공배수 @@황소처럼 우직하게@@ [유클리드 호제법 알고리즘][gcd][lcm] (0) | 2020.02.27 |
Comments