#P1371D. Grid-00100

    ID: 3149 Type: RemoteJudge 1000ms 256MiB Tried: 0 Accepted: 0 Difficulty: 5 Uploaded By: Tags>constructive algorithmsgreedyimplementation*1600

Grid-00100

Description

A mad scientist Dr.Jubal has made a competitive programming task. Try to solve it!

You are given integers n,kn,k. Construct a grid AA with size n×nn \times n consisting of integers 00 and 11. The very important condition should be satisfied: the sum of all elements in the grid is exactly kk. In other words, the number of 11 in the grid is equal to kk.

Let's define:

  • Ai,jA_{i,j} as the integer in the ii-th row and the jj-th column.
  • Ri=Ai,1+Ai,2+...+Ai,nR_i = A_{i,1}+A_{i,2}+...+A_{i,n} (for all 1in1 \le i \le n).
  • Cj=A1,j+A2,j+...+An,jC_j = A_{1,j}+A_{2,j}+...+A_{n,j} (for all 1jn1 \le j \le n).
  • In other words, RiR_i are row sums and CjC_j are column sums of the grid AA.
  • For the grid AA let's define the value f(A)=(max(R)min(R))2+(max(C)min(C))2f(A) = (\max(R)-\min(R))^2 + (\max(C)-\min(C))^2 (here for an integer sequence XX we define max(X)\max(X) as the maximum value in XX and min(X)\min(X) as the minimum value in XX).

Find any grid AA, which satisfies the following condition. Among such grids find any, for which the value f(A)f(A) is the minimum possible. Among such tables, you can find any.

The input consists of multiple test cases. The first line contains a single integer tt (1t1001 \le t \le 100) — the number of test cases. Next tt lines contain descriptions of test cases.

For each test case the only line contains two integers nn, kk (1n300,0kn2)(1 \le n \le 300, 0 \le k \le n^2).

It is guaranteed that the sum of n2n^2 for all test cases does not exceed 10510^5.

For each test case, firstly print the minimum possible value of f(A)f(A) among all tables, for which the condition is satisfied.

After that, print nn lines contain nn characters each. The jj-th character in the ii-th line should be equal to Ai,jA_{i,j}.

If there are multiple answers you can print any.

Input

The input consists of multiple test cases. The first line contains a single integer tt (1t1001 \le t \le 100) — the number of test cases. Next tt lines contain descriptions of test cases.

For each test case the only line contains two integers nn, kk (1n300,0kn2)(1 \le n \le 300, 0 \le k \le n^2).

It is guaranteed that the sum of n2n^2 for all test cases does not exceed 10510^5.

Output

For each test case, firstly print the minimum possible value of f(A)f(A) among all tables, for which the condition is satisfied.

After that, print nn lines contain nn characters each. The jj-th character in the ii-th line should be equal to Ai,jA_{i,j}.

If there are multiple answers you can print any.

Sample Input 1

4
2 2
3 8
1 0
4 16

Sample Output 1

0
10
01
2
111
111
101
0
0
0
1111
1111
1111
1111

Note

In the first test case, the sum of all elements in the grid is equal to 22, so the condition is satisfied. R1=1,R2=1R_1 = 1, R_2 = 1 and C1=1,C2=1C_1 = 1, C_2 = 1. Then, f(A)=(11)2+(11)2=0f(A) = (1-1)^2 + (1-1)^2 = 0, which is the minimum possible value of f(A)f(A).

In the second test case, the sum of all elements in the grid is equal to 88, so the condition is satisfied. R1=3,R2=3,R3=2R_1 = 3, R_2 = 3, R_3 = 2 and C1=3,C2=2,C3=3C_1 = 3, C_2 = 2, C_3 = 3. Then, f(A)=(32)2+(32)2=2f(A) = (3-2)^2 + (3-2)^2 = 2. It can be proven, that it is the minimum possible value of f(A)f(A).