문제https://www.acmicpc.net/problem/16235풀이(27분)import java.io.*;import java.util.*;public class Main { static int[][] A; static int[][] fertilizer; static int n, m, k; static ArrayList[][] map; static int[] dx = new int[]{-1,-1,-1,0,0,1,1,1}; static int[] dy = new int[]{-1,0,1,-1,1,-1,0,1}; public static void main(String[] args) throws IOException { BufferedReader br =..