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