백준 문제풀이 (골드 3)
1. 벽 타기(25363) 👉 소스코드 import java.io.*; import java.util.*; public class Main { static int X, Y, sX, sY, gX, gY; static int[][] visited; static char[][] arr; static int[] moveX = {0, 0, -1, 1}; static int[] moveY = {-1, 1, 0, 0}; public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringToken..
IT/골드3
2023. 2. 4. 12:02