가오리의 코딩일기
[1978] 소수 찾기 본문
countNumber = int(input())
numberList = list(map(int, input().split()))
result = 0
for i in numberList:
count = 0
if i == 1:
continue
for j in range(2, i+1):
if i % j == 0:
count += 1
if count == 1:
result += 1
print(result)
'Python > 백준' 카테고리의 다른 글
[11576] Base Conversion (0) | 2022.08.15 |
---|---|
[2089] -2진수 (0) | 2022.08.15 |
[2745] 진법 변환 (0) | 2022.08.14 |
[11005] 진법 변환2 (0) | 2022.08.14 |
[1934] 최소공배수 (0) | 2022.08.14 |