#include <iostream> #include <algorithm> using namespace std; int t[1000],n,s,nw=1000; int main() { cin>>n; for(int i=0;i<n;i++) { cin>>t[i]; if(t[i]%2!=0) { if(t[i]<nw) nw=t[i]; } s+=t[i]; } if(s%2!=0)s-=nw; if(s!=0) cout<<s; else cout<<"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 | #include <iostream> #include <algorithm> using namespace std; int t[1000],n,s,nw=1000; int main() { cin>>n; for(int i=0;i<n;i++) { cin>>t[i]; if(t[i]%2!=0) { if(t[i]<nw) nw=t[i]; } s+=t[i]; } if(s%2!=0)s-=nw; if(s!=0) cout<<s; else cout<<"NIESTETY"; return 0; } |