백준 문제풀이 (골드 5)
1. 토마토(7569) 👉 소스코드 import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.util.*; import javax.swing.plaf.synth.SynthSeparatorUI; public class Main { static int width, height, H, notT = 0, count = 0; static int[][][] arr; static int[] moveX = {-1, 1, 0, 0, 0, 0}; static int[] moveY = {0, 0, -1, 1, 0, 0}; sta..
IT/골드5
2023. 1. 31. 13:35