풀이 : 2차원 배열 행, 열, 오른쪽 대각선, 왼쪽 대각선 sum 값 비교 -> 오른쪽 대각선 : i == j , 왼쪽 대각선 : j == 99 - i Code public class Solution1209 { static int[][] map; public static void main(String[] args) throws IOException { Scanner sc = new Scanner(System.in); for (int tc = 1; tc