😉 아이디어1. 과제가 진행되는 시간 기준 구현 _!0초 ~ plans의 최대값 * 1_000!_2. 매 초마다 _!now!_에 저장된 과제의 처리시간 감소3. 과제를 멈추고 새로운 과제를 시작할 경우 _!stopped!_리스트에 값 추가 👉 과제가 종료되면 이 리스트에서 꺼내 할당😉 풀이from collections import dequedef solution(plans): for plan in plans: plan[1] = hm_to_ss(plan[1]) plan[2] = mm_to_ss(plan[2]) plan.append(plan[1] + plan[2]) plans.sort(key = lambda x : x[1]) # ..