https://www.acmicpc.net/problem/2693 풀이 import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st; int n = Integer.parseInt(br.readLine()); for(int j = 0; j < n; j++){ int[] arr = new int[10]; st = new StringTokenizer(br.readLine()); for(int i =..