import java.util.Scanner;
public class kie {
public static void main(String[] args) {
int total = 0;
Integer smallestOdd = null;
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
for (int i = 0; i < n; i++) {
int bill = sc.nextInt();
if (bill % 2 == 1) {
if (smallestOdd == null || bill < smallestOdd) {
smallestOdd = bill;
}
}
total += bill;
}
if (total % 2 == 1) {
total -= smallestOdd;
}
if (total == 0) {
System.out.println("NIESTETY");
} else {
System.out.println(total);
}
sc.close();
}
}
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 | import java.util.Scanner; public class kie { public static void main(String[] args) { int total = 0; Integer smallestOdd = null; Scanner sc = new Scanner(System.in); int n = sc.nextInt(); for (int i = 0; i < n; i++) { int bill = sc.nextInt(); if (bill % 2 == 1) { if (smallestOdd == null || bill < smallestOdd) { smallestOdd = bill; } } total += bill; } if (total % 2 == 1) { total -= smallestOdd; } if (total == 0) { System.out.println("NIESTETY"); } else { System.out.println(total); } sc.close(); } } |
English