내가 푼 풀이 import java.io.*;import java.util.StringTokenizer;public class Q1_씨름선수 { static People[] arr; static int count=0; static class People{ int height; int weight; People(int h,int w){ this.height=h; this.weight=w; } } static void compare(People curr){ boolean isValid=true; for (People people : arr) { i..