1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include <cstdio>

const int MAX = 1000005;

int t[MAX];

int main()
{
	int n;
	int s=0;
	int w=-1;
	scanf("%d", &n);
	for (int i=0; i<n; i++) {
		scanf("%d", &t[i]);
		s+=t[i];
	}
	
	if ((s&1)==0) {
		printf("%d\n", s);
		return 0;
	}
	
	if (n==1) {
		printf("NIESTETY\n");
		return 0;
	}
	
	for (int i=0; i<n; i++) {
		if ((t[i]&1)==1)
			if (s-t[i]>w)
				w=s-t[i];
	}
	
	printf("%d\n", w);
	
	return 0;
}
//ADG