num = int(input())
array = []
for i in range(num):
array.append(int(input()))

cnt = 0
for i in range(len(array)):
for j in range(1, array[i]):
if (array[i] - j) % (2 * j + 1) == 0:
cnt += 1
break

print(len(array) - cnt)

'알고리즘' 카테고리의 다른 글

백준 1003 피보나치 함수  (0) 2021.07.15
백준 2839 설탕배달(DP, 그리디)  (0) 2021.07.15
백준 7785 회사에 있는 사람  (0) 2020.06.26
백준 2309 일곱 난쟁이  (0) 2020.02.05
백준 1673 치킨 쿠폰  (0) 2020.02.05

+ Recent posts