diff --git a/qbobl5/week16/B10830.java b/qbobl5/week16/B10830.java new file mode 100644 index 0000000..c2c5584 --- /dev/null +++ b/qbobl5/week16/B10830.java @@ -0,0 +1,53 @@ +import java.io.*; +import java.util.*; + +public class B10830 { + static int[][] matrix; + static int N; + + public static void main(String[] args) throws IOException { + BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); + StringTokenizer st = new StringTokenizer(br.readLine()); + + N = Integer.parseInt(st.nextToken()); + long B = Long.parseLong(st.nextToken()); + matrix = new int[N][N]; + + for(int i=0; i