#include <iostream>
#include <algorithm>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char** argv)
{
int n;
cin >> n;
int a;
int ws=100000;
int np=0;
int wynik=0;
for (int i=0; i <n; i++)
{
cin >> a;
wynik+=a;
if (a%2!=0)
{
// cout << a << endl;
np++;
ws=min(ws,a);
}
}
// cout << ws;
if(n==1 && np==1)
cout << "NIESTETY";
else
{
if(wynik%2==1)
{
cout<<wynik-ws;
}
else
cout << wynik << 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 35 36 37 38 39 40 | #include <iostream> #include <algorithm> using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int main(int argc, char** argv) { int n; cin >> n; int a; int ws=100000; int np=0; int wynik=0; for (int i=0; i <n; i++) { cin >> a; wynik+=a; if (a%2!=0) { // cout << a << endl; np++; ws=min(ws,a); } } // cout << ws; if(n==1 && np==1) cout << "NIESTETY"; else { if(wynik%2==1) { cout<<wynik-ws; } else cout << wynik << endl; } return 0; } |
English