#include <cstdio>
short int min=2000;
inline void readUI(int *n)
{
register char c = 0;
while (c < 33) c=getc_unlocked(stdin);
(*n) = 0;
while (c>32)
{
(*n)=(*n)*10LL + (c-48);
c=getc_unlocked(stdin);
}
}
inline void read(short int *w)
{
register char c = 0;
while (c < 33) c=getc_unlocked(stdin);
(*w) = 0;
while (c>32)
{
(*w)=(*w)*10LL + (c-48);
c=getc_unlocked(stdin);
}
}
int main()
{
int ilosc;
int suma=0;
short int banknot;
readUI(&ilosc);
while(ilosc--)
{
read(&banknot);
suma+=banknot;
if(banknot &1 && banknot<min) min=banknot;
}
if(~min&1) min=0;
if(~suma&1) printf("%d\n",suma);
else
{
suma-=min;
if(suma==0)printf("NIESTETY\n") ;
else printf("%d\n",suma);
}
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 41 42 43 44 45 46 47 48 49 50 | #include <cstdio> short int min=2000; inline void readUI(int *n) { register char c = 0; while (c < 33) c=getc_unlocked(stdin); (*n) = 0; while (c>32) { (*n)=(*n)*10LL + (c-48); c=getc_unlocked(stdin); } } inline void read(short int *w) { register char c = 0; while (c < 33) c=getc_unlocked(stdin); (*w) = 0; while (c>32) { (*w)=(*w)*10LL + (c-48); c=getc_unlocked(stdin); } } int main() { int ilosc; int suma=0; short int banknot; readUI(&ilosc); while(ilosc--) { read(&banknot); suma+=banknot; if(banknot &1 && banknot<min) min=banknot; } if(~min&1) min=0; if(~suma&1) printf("%d\n",suma); else { suma-=min; if(suma==0)printf("NIESTETY\n") ; else printf("%d\n",suma); } return 0; } |
English