import java.util.Arrays;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner kb = new Scanner(System.in);
int N = kb.nextInt();
int[] persons = new int[N];
for(int i=0; i<N; i++) {
persons[i] = kb.nextInt();
}
Arrays.sort(persons);
int[] times = new int[N];
times[0] = persons[0];
int sum = persons[0];
for(int i=1; i<N; i++) {
times[i] = times[i-1]+ persons[i];
sum+=times[i];
}
System.out.println(sum);
}
}
'공부기록 > 백준' 카테고리의 다른 글
[백준] 12871번 무한 문자열 (0) | 2024.02.04 |
---|---|
[백준] 14490번 백대열 (0) | 2024.02.04 |
[백준] 9996번 한국이 그리울 땐 서버에 접속하지 (0) | 2024.02.04 |
[백준] 11725번 트리의 부모 찾기 (0) | 2024.02.03 |
[백준] 2407번 조합 (1) | 2024.02.03 |