728x90
반응형
number_cnt = input()
number_str = raw_input()
answer = 0
number_list = number_str.split(" ")
for num in number_list:
nnum = int(num)
tmp_cnt = 0
for i in range(1, nnum+1):
if (nnum % i) == 0:
tmp_cnt += 1
if tmp_cnt == 2:
answer += 1
print answer
728x90
반응형
'Algorithm > Baekjoon' 카테고리의 다른 글
단계별로 풀기 4단계 while문 - A+B-4(10951 문제) Python 답안 (0) | 2019.10.07 |
---|---|
단계별로 풀기 4단계 while문 - A+B-5(10952 문제) Python 답안 (0) | 2019.10.07 |
백준 단계별로 풀기 10단계 소수 구하기 - 소수 (2581 문제) C언어 답안 (0) | 2019.03.09 |
백준 단계별로 풀기 9단계 정렬해보기 - 수 정렬하기 (2750 문제) C언어 답안 (0) | 2019.01.26 |
백준 단계별로 풀기 3단계 for문 사용해보기 - 빠른 A+B (15552 문제) Python 답안 (0) | 2019.01.20 |