eolymp
bolt
Try our new interface for solving problems
Problems

Even More Odd Photos

Even More Odd Photos

Farmer John is yet again trying to take a photograph of his n cows.

Each cow has an integer "breed ID" number in the range 1..100. Farmer John has a very peculiar idea in mind for his photo: he wants to partition all the cows into disjoint groups (in other words, place each cow in exactly one group) and then line up the groups so the sum of the breed IDs of the cows in the first group is even, the sum of the IDs in the second group is odd, and so on, alternating between even and odd.

What is the maximum possible number of groups Farmer John can form?

Input

The first line contains n (2n1000). The next line contains n integers giving the breed IDs of the n cows.

Output

Print the maximum possible number of groups in Farmer John's photo. It can be shown that at least one feasible grouping exists.

Example 1

In this example, one way to form the maximum number of three groups is as follows. Place 1 and 3 in the first group, 5, 7 and 9 in the second group, and 11 and 13 in the third group.

Example 2

In this example, one way to form the maximum number of five groups is as follows. Place 2 in the first group, 11 in the second group, 13 and 1 in the third group, 15 in the fourth group, and 17 and 3 in the fifth group.

Time limit 1 second
Memory limit 128 MiB
Input example #1
7
1 3 5 7 9 11 13
Output example #1
3
Input example #2
7
11 2 17 13 1 15 3
Output example #2
5
Source 2021 USACO January, Bronze