#include <set>
#include <iostream>
#include <vector>
using namespace std;
#define LICZBA_NOMINALOW 1001
typedef long long LL;
int nominaly[LICZBA_NOMINALOW];
int main () {
int n, ai;
LL s = 0;
cin >> n;
while(n--) {
cin >> ai;
nominaly[ai]++;
s += ai;
}
if (s%2 == 0) {
cout << s << endl;
} else {
for (n=1; nominaly[n]==0 && n<LICZBA_NOMINALOW; n+=2);
if (s-n>0) {
cout << s-n << endl;
} else {
cout << "NIESTETY" << endl;
}
}
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 | #include <set> #include <iostream> #include <vector> using namespace std; #define LICZBA_NOMINALOW 1001 typedef long long LL; int nominaly[LICZBA_NOMINALOW]; int main () { int n, ai; LL s = 0; cin >> n; while(n--) { cin >> ai; nominaly[ai]++; s += ai; } if (s%2 == 0) { cout << s << endl; } else { for (n=1; nominaly[n]==0 && n<LICZBA_NOMINALOW; n+=2); if (s-n>0) { cout << s-n << endl; } else { cout << "NIESTETY" << endl; } } return 0; } |
English