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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#include <cstdio>
#include <vector>
using namespace std;
int main() 
{
	int n = 0;
	scanf("%d", &n);
	vector <int> np, so;
	int k[1001];
	for(int i = 0; i <= 1000; i++)
	{
		k[i] = 0;
	}
	int w = 0;
	int b = 0;
	for(int i = 0; i < n; i++)
	{
		scanf("%d", &w);
		if(w%2 == 0)
		{
			b += w;
		}
		else
		{
			np.push_back(w);
		}
		w = 0;
	}
	int s = np.size();
	for(int i = 0; i < s; i++)
	{
		k[np[i]]++;
	}
	for(int i = 0; i <= 1000; i++)
	{
		for(int j = 0; j < k[i]; j++)
		{
			so.push_back(i);
		}
	}
	for(int i = 1; i < s; i++)
	{
		b += so[i];
	}
	if(n == 1 && s == 1)
	{
		printf("NIESTETY");
	}
	else
	{
		printf("%d", b);
	}
	return 0;
}