#include <cstdio>
#include <vector>
using namespace std;
int main(){
int n, a, b=1000111, s=0;
scanf("%d", &n);
while(n--){
scanf("%d", &a);
s+=a;
if(a&1){
if(a<b){
b=a;
}
}
}
if(s&1){
s-=b;
}
if(s){
printf("%d\n", s);
}else{
printf("NIESTETY\n");
}
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 | #include <cstdio> #include <vector> using namespace std; int main(){ int n, a, b=1000111, s=0; scanf("%d", &n); while(n--){ scanf("%d", &a); s+=a; if(a&1){ if(a<b){ b=a; } } } if(s&1){ s-=b; } if(s){ printf("%d\n", s); }else{ printf("NIESTETY\n"); } return 0; } |
English