[PY] 1931 : 회의실 배정
https://www.acmicpc.net/problem/1931간단한데 정렬을 그래도 endTime, startTime 순으로 우선순위를 둬 주면 확실히 된다.그냥 빨리 끝나는 것만 집으면 된다.import sysinput = sys.stdin.readlineconfCount = int(input())confList = []for i in range(confCount): startT, endT = map(int, input().split()) confList.append([startT, endT])confList = sorted(confList, key=lambda x: (x[1], x[0]))endTime = 0confProcessed = 0for i in range(confCount): ..