문제 이해 - 결혼식장에 동시에 존재하는 최대 인원수를 구하라 해결 전략 - ArrayList에 시간과 관련된 정보를 저장합니다 -> 해당 ArrayList를 정렬합니다. - ArrayList를 순회하면서 s와 관련된 정보일 때는 인원을 추가하고, e와 관련된 정보일 때는 인원을 감소시킵니다. 구현 import java.util.*; class Time implements Comparable{ public int time; public char state; Time(int time, char state) { this.time = time; this.state = state; } @Override public int compareTo(Time ob){ if(this.time==ob.time) return ..