주의할 점 1. 작업요청이 동시에 들어온 경우 ex) [0, 8], [0, 3], [0, 5] 2. 작업이 끝나고 다음 작업이 바로 실행되지 않는 경우 ex) [0,2], [10,2] 3. 현 작업 진행 중에 여러 작업들이 요청된다면 작업 실행 시간이 짧은 순으로 먼저 실행해야 함 import java.util.*; class Solution { public int solution(int[][] jobs) { //소요시간 int answer = 0; //끝나는 시간 int end = 0; PriorityQueue q = new PriorityQueue(new Comparator() { @Override public int compare(int[] o1, int[] o2) { return o1[0]!=o2..