μ²΄κ° Level : β
β β Review: μμ ꡬνλ λ² |
π‘ N κ° μ μ«μλ₯Ό λ°μμ κ·Έ μ€μ μμκ° λͺκ° μλμ§ νμΈνλ λ¬Έμ
1) λ¨Όμ N κ°μ μ«μλ₯Ό 리μ€νΈμ λ°μμ€λ€.
2) μ΄ν μ«μ νλμ© μμμΈμ§ νμΈν΄μ€λ€. ( 0μΌλ‘ λλ μ§λ μκ° μλμ§ cnt)
3) 1κ° λ°μ μλ€λ©΄ μμ ( μμλ 1κ³Ό μμ μΌλ‘λ§ λλ μ§λ μ«μ)
N = int(input())
cnt = 0
answer = 0
a = []
a = list(map(int,input().split()))
for i in a:
cnt = 0
for j in range(1,i):
if ( i % j == 0):
cnt += 1
if (cnt == 1):
answer +=1
print(answer)