[BOJ261169] 세 번 이내에 사과를 먹자 - JAVA
문제 #26169 시간 제한 1초 메모리 제한 512MB 내가 작성한 코드 import java.io.*; import java.util.*; public class BOJ26169 { static StringBuilder sb = new StringBuilder(); static BufferedReader reader = new BufferedReader(new InputStreamReader(System.in)); static StringTokenizer st = null; static final int N = 5; static int[] dx = {0, 0, -1, 1}; static int[] dy = {-1, 1, 0, 0}; static int[][] board = new int[N][N]; ..