import java.util.*;
class Solution {
public int solution(int[] A, int[] B) {
int answer = 0;
Arrays.sort(A);
Arrays.sort(B);
for (int i = 0; i < A.length; i++) {
answer += (A[i] * B[B.length - i - 1]);
}
return answer;
}
}
'Playground > 자바문제집' 카테고리의 다른 글
[프로그래머스] 숫자의 표현 (0) | 2023.03.30 |
---|---|
[프로그래머스] 이진 변환 반복하기 (0) | 2023.03.30 |
[프로그래머스] JadenCase 문자열 만들기 (0) | 2023.03.30 |
[백준] 11659번 (0) | 2023.03.30 |
[프로그래머스] 3진법 뒤집기 (0) | 2023.03.20 |