[백준] 램프 - Java 1034
·
PS/백준
public class BOJ1034 { /** * 14 3 * 001 * 101 * 001 * 000 * 111 * 001 * 101 * 111 * 110 * 000 * 111 * 010 * 110 * 001 * 6 */ static String[] grid; static int N; static int M; static int K; static int max; static int result = 0; public static void main(String[] args) throws IOException { BufferedRea..