반응형
문제 정보
제출 코드
count = int(input())
total = count
n = list(map(int, input().split()))
if(1 in n):
n.remove(1)
total -= 1
for j in n:
for k in range(2,j):
if(j%k==0):
total -= 1
break
print(total)
'Study > 알고리즘' 카테고리의 다른 글
[백준 알고리즘] 2292번 Python (0) | 2021.10.04 |
---|---|
[백준 알고리즘] 1712번 Python (0) | 2021.10.04 |
[백준 알고리즘] 1316번 Python (0) | 2021.10.04 |
[백준 알고리즘] 2941번 Python (0) | 2021.10.04 |
[백준 알고리즘] 5622번 Python (0) | 2021.10.04 |
댓글