https://www.acmicpc.net/problem/3058
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int T = Integer.parseInt(br.readLine());
StringTokenizer st;
for (int i = 0; i < T; i++) {
st = new StringTokenizer(br.readLine());
int minVal = Integer.MAX_VALUE;
int sumOfEvenNum = 0;
while (st.hasMoreTokens()) {
int num = Integer.parseInt(st.nextToken());
if (num % 2 == 0) {
sumOfEvenNum += num;
if (num < minVal) {
minVal = num;
}
}
}
System.out.println(sumOfEvenNum + " " + minVal);
}
}
}
'알고리즘 > 백준' 카테고리의 다른 글
백준 25372 성택이의 은밀한 비밀번호 (0) | 2022.12.09 |
---|---|
백준 3047 ABC (0) | 2022.12.09 |
백준 1284 집주소 (0) | 2022.12.09 |
백준 5523 경기결과 (0) | 2022.12.09 |
백준 1290 Mini Fantasy War (0) | 2022.12.08 |