forDevLife
[이코테]큰 수의 법칙 <그리디> 본문
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine(), " ");
int N = Integer.parseInt(st.nextToken());
int M = Integer.parseInt(st.nextToken());
int K = Integer.parseInt(st.nextToken());
int[] num = new int[N];
st = new StringTokenizer(br.readLine(), " ");
for(int i=0; i<N; i++) {
num[i] = Integer.parseInt(st.nextToken());
}
Arrays.sort(num);
int first = num[N-1];
int second = num[N-2];
int sum = ((M/K)*K*first) + ((M%K)*second);
System.out.println(sum);
}
}
'알고리즘' 카테고리의 다른 글
[이코테]1이 될 때까지 <그리디> (0) | 2021.05.03 |
---|---|
[이코테]숫자 카드 게임 <그리디> (0) | 2021.05.01 |
[백준] 13305 - 주유소 (자바) (0) | 2021.05.01 |
[백준] 1541 - 잃어버린 괄호 (자바) (0) | 2021.04.30 |
[백준] 1931 - 회의실 배정 (자바) (0) | 2021.04.30 |
Comments