7569

·백준
문제https://www.acmicpc.net/problem/7569 코드import java.io.*;import java.util.*;public class Main { private static int[][][] tomato; private static int[] dx = { -1, 1, 0, 0, 0, 0 }; private static int[] dy = { 0, 0, -1, 1, 0, 0 }; private static int[] dz = { 0, 0, 0, 0, -1, 1 }; private static int M; private static int N; private static int H; private static Queue queue = n..
G.H
'7569' 태그의 글 목록