-Code
import java.util.Arrays;
import java.util.Scanner;
public class _28417 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int res = 0;
for (int i = 0; i < n; i++) {
int[] two_track = new int[2];
int[] five_track = new int[5];
for (int j = 0; j < 2; j++) {
two_track[j] = sc.nextInt();
}
for (int j = 0; j < 5; j++) {
five_track[j] = sc.nextInt();
}
Arrays.sort(five_track);
int max_two_track = Arrays.stream(two_track).max().getAsInt();
int[] temp = Arrays.copyOfRange(five_track, 3, 5);
int max_total_five_track = Arrays.stream(temp).sum();
res = Math.max(res, max_two_track + max_total_five_track);
}
System.out.println(res);
}
}
'Beakjoon&프로그래머스 > Java' 카테고리의 다른 글
[JPA] 영속성 컨텍스트 (0) | 2024.03.02 |
---|---|
[백준/Java] 24296번 ЛИНИЯ (0) | 2024.02.23 |
[백준/Java] 29766번 DKSH 찾기 (0) | 2023.10.06 |
[백준/Java] 11718번 그대로 출력하기 (0) | 2022.10.27 |
[백준/Java] 25314번 코딩은 체육과목 입니다 (0) | 2022.10.27 |