본문 바로가기
파이썬알고리즘

20210615#(41) 백준 1978 파이썬

by zho 2021. 6. 15.

https://www.acmicpc.net/problem/1978

 

1978번: 소수 찾기

첫 줄에 수의 개수 N이 주어진다. N은 100이하이다. 다음으로 N개의 수가 주어지는데 수는 1,000 이하의 자연수이다.

www.acmicpc.net

 

n=int(input())
nums=list(map(int, input().split()))
sosu_count=0

for i in nums:
  count=0
  if(i==1):
    continue
  for j in range(2,i+1):
    if(i%j==0):
      count+=1
  if(count==1):
    sosu_count+=1
print(sosu_count)

728x90