// kie.cpp : Defines the entry point for the console application.
//
#include "stdio.h"
#define NN 1000
long bb[NN+1];
long b, i, n, s, k, m;
int main()
{
scanf("%ld", &n);
for (i=0; i<n; i++)
{
scanf("%ld", &b);
bb[b]++;
s += b;
}
for (i=1; i<=NN; i+=2)
{
b = bb[i];
if (b!=0)
{
k += b;
if (m==0)
m = i;
}
}
if ((k%2)==1)
s -= m;
if (s==0)
printf("NIESTETY\n");
else
printf("%ld\n", s);
return 0;
}
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 | // kie.cpp : Defines the entry point for the console application. // #include "stdio.h" #define NN 1000 long bb[NN+1]; long b, i, n, s, k, m; int main() { scanf("%ld", &n); for (i=0; i<n; i++) { scanf("%ld", &b); bb[b]++; s += b; } for (i=1; i<=NN; i+=2) { b = bb[i]; if (b!=0) { k += b; if (m==0) m = i; } } if ((k%2)==1) s -= m; if (s==0) printf("NIESTETY\n"); else printf("%ld\n", s); return 0; } |
English