https://www.acmicpc.net/problem/17836코드import java.util.*;import java.io.*;public class Main { public static int n, m, t; public static int[][] maps; public static boolean[][][] visited; public static int[] dx = { 0, 1, 0, -1 }; public static int[] dy = { 1, 0, -1, 0 }; public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System...