import java.util.*; //Point 객체를 정렬하는 인터페이스를 상속받은 클래스 class Point implements Comparable { public int x, y; Point(int x, int y){ this.x = x; this.y = y; } @Override public int compareTo(Point o) { //음수 값이 나오면 오름차순 정렬 if(this.x==o.x) return this.y-o.y; else return this.x-o.x; } } public class Main { public static void main(String[] args){ Main T = new Main(); Scanner kb = new Scanner(System.in); in..