boj 1074 Z
-
boj)1074 - ZPS/boj 2020. 11. 12. 13:19
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 import java.io.*; import java.util.*; public class boj_1074 { static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); static int n, r, c; public static void main(String[] args) throws IOException { StringTokenizer st = new StringTokenizer(br.readLine()); n = Intege..