ALGORITHM

[JAVA] 백준 11399- ATM

연듀 2022. 11. 23. 20:35

https://www.acmicpc.net/problem/11399

 

11399번: ATM

첫째 줄에 사람의 수 N(1 ≤ N ≤ 1,000)이 주어진다. 둘째 줄에는 각 사람이 돈을 인출하는데 걸리는 시간 Pi가 주어진다. (1 ≤ Pi ≤ 1,000)

www.acmicpc.net

 

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));
        int n = Integer.parseInt(br.readLine());

        int[] arr = new int[n];

        StringTokenizer st = new StringTokenizer(br.readLine());
        for (int i = 0; i < n; i++) {
            arr[i] = Integer.parseInt(st.nextToken());
        }
        Arrays.sort(arr);

        int sum = 0;
        int wait = 0;

        for(int i=0; i<n; i++){
            wait+=arr[i];
            sum+=wait;
        }
        System.out.println(sum);
    }
}

 

 

'ALGORITHM' 카테고리의 다른 글

[JAVA] 백준 11000- 강의실 배정  (0) 2022.11.24
[JAVA] 백준 2217- 로프  (0) 2022.11.23
[JAVA] 백준 1931- 회의실 배정  (0) 2022.11.23
[JAVA] 백준 10610 - 30  (0) 2022.11.23
[JAVA] 백준 2875 - 대회 or 인턴  (0) 2022.11.22