#include <cstdio> #include <stdlib.h> #include <algorithm> using namespace std; long n; int b[1000000]; int compare(const void * a, const void * b) { if (*(int*)a < *(int*)b) return -1; if (*(int*)a == *(int*)b) return 0; if (*(int*)a > *(int*)b) return 1; } int main() { scanf("%d", &n); if (n == 0) { printf("NIESTETY"); return 0; } long i; long suma = 0; int e; for (long i = 0; i < n; i++) scanf("%lld", &b[i]); qsort(b, n, sizeof(int), compare); for (i = 0; i < n; i++) { suma += b[i]; } if (suma % 2 == 0) { printf("%d", suma); return 0; } else { if (n > 1) { i = 0; while (1) { if (i == n) break; e = b[i++]; if ((suma - e) % 2 == 0) { printf("%d", suma - e); return 0; } } printf("NIESTETY"); return 0; } else { printf("NIESTETY"); 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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | #include <cstdio> #include <stdlib.h> #include <algorithm> using namespace std; long n; int b[1000000]; int compare(const void * a, const void * b) { if (*(int*)a < *(int*)b) return -1; if (*(int*)a == *(int*)b) return 0; if (*(int*)a > *(int*)b) return 1; } int main() { scanf("%d", &n); if (n == 0) { printf("NIESTETY"); return 0; } long i; long suma = 0; int e; for (long i = 0; i < n; i++) scanf("%lld", &b[i]); qsort(b, n, sizeof(int), compare); for (i = 0; i < n; i++) { suma += b[i]; } if (suma % 2 == 0) { printf("%d", suma); return 0; } else { if (n > 1) { i = 0; while (1) { if (i == n) break; e = b[i++]; if ((suma - e) % 2 == 0) { printf("%d", suma - e); return 0; } } printf("NIESTETY"); return 0; } else { printf("NIESTETY"); return 0; } } } |