CF59B.Fortune Telling

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Marina loves Sasha. But she keeps wondering whether Sasha loves her. Of course, the best way to know it is fortune telling. There are many ways of telling fortune, but Marina has picked the easiest one. She takes in her hand one or several camomiles and tears off the petals one by one. After each petal she pronounces alternatively "Loves" and "Doesn't love", at that Marina always starts with "Loves". There are nn camomiles growing in the field, possessing the numbers of petals equal to a1,a2,... ana_{1},a_{2},...\ a_{n} . Marina wants to pick a bouquet with the maximal possible total number of petals so that the result would still be "Loves". Help her do that; find the maximal number of petals possible in the bouquet.

输入格式

The first line contains an integer nn ( 1<=n<=1001<=n<=100 ), which is the number of flowers growing in the field. The second line contains nn integers aia_{i} ( 1<=ai<=1001<=a_{i}<=100 ) which represent the number of petals on a given ii -th camomile.

输出格式

Print a single number which is the maximal number of petals in the bouquet, the fortune telling on which would result in "Loves". If there are no such bouquet, print 00 instead. The bouquet may consist of a single flower.

输入输出样例

  • 输入#1

    1
    1
    

    输出#1

    1
    
  • 输入#2

    1
    2
    

    输出#2

    0
    
  • 输入#3

    3
    5 6 7
    

    输出#3

    13
    
首页