#include <stdio.h>
#include <limits.h>
int main(void)
{
int n, i, a, s, no, mo;
s = 0;
no = 0;
mo = 0;
scanf("%d", &n);
for (i = 0; i < n; i++) {
scanf("%d", &a);
s += a;
if ((a & 1) && (!no++ || a < mo))
mo = a;
}
if (no & 1)
s -= mo;
if (s)
printf("%d\n", s);
else
printf("NIESTETY\n");
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 | #include <stdio.h> #include <limits.h> int main(void) { int n, i, a, s, no, mo; s = 0; no = 0; mo = 0; scanf("%d", &n); for (i = 0; i < n; i++) { scanf("%d", &a); s += a; if ((a & 1) && (!no++ || a < mo)) mo = a; } if (no & 1) s -= mo; if (s) printf("%d\n", s); else printf("NIESTETY\n"); return 0; } |
English