https://school.programmers.co.kr/learn/courses/30/lessons/12941
풀이
- 배열을 정렬
- 배열 A의 시작과 배열 B의 끝부터 서로 곱한 값을 answer에 저장
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[A.length-i-1];
}
return answer;
}
}
'Algorithm > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 올바른 괄호 (0) | 2023.08.14 |
---|---|
[프로그래머스] 점프와 순간 이동 (0) | 2023.08.12 |
[프로그래머스] 핸드폰 번호 가리기 (0) | 2023.05.25 |
[프로그래머스] 추억 점수 (0) | 2023.05.22 |
[programmers] 최소직사각형 (1) | 2023.05.17 |