#include <iostream>
#include <stdio.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main() {
int n;
scanf("%d",&n);
int min=100000000;
long long sum=0;
int ile=0;
int x;
for(int i=0;i<n;i++){
scanf("%d",&x);
if(x%2==0){
sum+=x;
}else{
ile++;
sum+=x;
if(x<min)min=x;
}
}
if(ile%2!=0)sum-=min;
if(sum!=0){
printf("%lld\n",sum);
}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 30 31 32 33 34 35 36 | #include <iostream> #include <stdio.h> /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int main() { int n; scanf("%d",&n); int min=100000000; long long sum=0; int ile=0; int x; for(int i=0;i<n;i++){ scanf("%d",&x); if(x%2==0){ sum+=x; }else{ ile++; sum+=x; if(x<min)min=x; } } if(ile%2!=0)sum-=min; if(sum!=0){ printf("%lld\n",sum); }else{ printf("NIESTETY\n"); } return 0; } |
English