CF1436B.Prime Square

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Sasha likes investigating different math objects, for example, magic squares. But Sasha understands that magic squares have already been studied by hundreds of people, so he sees no sense of studying them further. Instead, he invented his own type of square — a prime square.

A square of size n×nn \times n is called prime if the following three conditions are held simultaneously:

  • all numbers on the square are non-negative integers not exceeding 10510^5 ;
  • there are no prime numbers in the square;
  • sums of integers in each row and each column are prime numbers.

Sasha has an integer nn . He asks you to find any prime square of size n×nn \times n . Sasha is absolutely sure such squares exist, so just help him!

输入格式

The first line contains a single integer tt ( 1t101 \le t \le 10 ) — the number of test cases.

Each of the next tt lines contains a single integer nn ( 2n1002 \le n \le 100 ) — the required size of a square.

输出格式

For each test case print nn lines, each containing nn integers — the prime square you built. If there are multiple answers, print any.

输入输出样例

  • 输入#1

    2
    4
    2

    输出#1

    4 6 8 1
    4 9 9 9
    4 10 10 65
    1 4 4 4
    1 1
    1 1
首页