CF129A.Cookies

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Olga came to visit the twins Anna and Maria and saw that they have many cookies. The cookies are distributed into bags. As there are many cookies, Olga decided that it's no big deal if she steals a bag. However, she doesn't want the sisters to quarrel because of nothing when they divide the cookies. That's why Olga wants to steal a bag with cookies so that the number of cookies in the remaining bags was even, that is, so that Anna and Maria could evenly divide it into two (even 0 remaining cookies will do, just as any other even number). How many ways there are to steal exactly one cookie bag so that the total number of cookies in the remaining bags was even?

输入格式

The first line contains the only integer nn ( 1<=n<=1001<=n<=100 ) — the number of cookie bags Anna and Maria have. The second line contains nn integers aia_{i} ( 1<=ai<=1001<=a_{i}<=100 ) — the number of cookies in the ii -th bag.

输出格式

Print in the only line the only number — the sought number of ways. If there are no such ways print 0.

输入输出样例

  • 输入#1

    1
    1
    

    输出#1

    1
    
  • 输入#2

    10
    1 2 2 3 4 4 4 2 2 2
    

    输出#2

    8
    
  • 输入#3

    11
    2 2 2 2 2 2 2 2 2 2 99
    

    输出#3

    1
    

说明/提示

In the first sample Olga should take the only bag so that the twins ended up with the even number of cookies.

In the second sample Olga can take any of five bags with two cookies or any of three bags with four cookies — 5+3=85+3=8 ways in total.

In the third sample, no matter which bag with two cookies Olga chooses, the twins are left with 29+99=1172*9+99=117 cookies. Thus, Olga has only one option: to take the bag with 9999 cookies.

首页