#include <iostream>
using namespace std;
int main () {
ios_base::sync_with_stdio (false);
int n; cin>>n;
int nieparzyste = 0;
int najniep = 1001;
int input;
int res = 0;
if (n == 1) {
cin>>input;
if (input%2 == 0)
cout<<input;
else
cout<<"NIESTETY";
}
else {
for (int i = 0; i < n; ++i) {
cin>>input;
res += input;
if (input%2 != 0) {
nieparzyste++;
if (input < najniep) {
najniep = input;
}
}
}
if (nieparzyste%2 == 0) {
cout<<res;
}
else {
cout<<res-najniep;
}
}
cin.get(),cin.get();
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 | #include <iostream> using namespace std; int main () { ios_base::sync_with_stdio (false); int n; cin>>n; int nieparzyste = 0; int najniep = 1001; int input; int res = 0; if (n == 1) { cin>>input; if (input%2 == 0) cout<<input; else cout<<"NIESTETY"; } else { for (int i = 0; i < n; ++i) { cin>>input; res += input; if (input%2 != 0) { nieparzyste++; if (input < najniep) { najniep = input; } } } if (nieparzyste%2 == 0) { cout<<res; } else { cout<<res-najniep; } } cin.get(),cin.get(); return 0; } |
English