Math_08_소수찾기(1978)

Eugenius1st·2022년 3월 21일
0

Algorithm_Baekjoon

목록 보기
18/158

Math08소수찾기(1978)

문제

주어진 수 N개 중에서 소수가 몇 개인지 찾아서 출력하는 프로그램을 작성하시오.

입력

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

출력

주어진 수들 중 소수의 개수를 출력한다.

풀이

  • 1 과 2 break
  • for 문으로 나머지가 0인것 break
  • cnt 누적

코드

import sys
sys.stdin = open("input.txt","rt")



def input():
    return sys.stdin.readline().rstrip()


N = int(input())
arr = list(map(int,input().split()))
cnt = 0

for x in arr:
    if x == 1:
        continue
    if x == 2:
        cnt +=1
        continue
    else:
        for i in range(2, x-1):
            if x%i == 0:
                break
        else: 
            cnt+=1
print(cnt)

배운 것

코멘트

profile
최강 프론트엔드 개발자가 되고싶은 안유진 입니다

0개의 댓글