[백준] 백준 python3 1978번 문제 및 소스코드

2024. 10. 8. 12:49Coding/백준-Python

1. 문제 링크

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

2. 문제

 

3. 소스 코드

n = int(input())
data = list(map(int, input().split()))
count = 0

for x in data:
    for i in range(2, x+1):
        if x % i == 0:
            if x == i:
                count += 1
                
            break

print(count)