← Back to List

25629번: 홀짝 수열 ↗

Solutions

Python 3
304 B | 292 chars
"""
[25629: 홀짝 수열](https://www.acmicpc.net/problem/25629)

Tier: ???
Category: 구현
"""


def solution():
  n = int(input())
  l = [*map(lambda t : int(t) % 2, input().split())]
  a, b = l.count(0), l.count(1)
  return int(a == b or a + 1 == b)


if __name__ == '__main__':
  print(solution())