본문 바로가기
Study/알고리즘

[백준 알고리즘] 1978번 Python

by Becoming a Hacker 2021. 10. 4.
반응형

문제 정보

 

제출 코드

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)

댓글