301905: CF361A. Levko and Table
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Levko and Table
题意翻译
Levko 很喜欢幻方,他想构造一个长宽都是 $n$ 且每行每列的和都是 $k$ 的幻方,请你帮帮他题目描述
Levko loves tables that consist of $ n $ rows and $ n $ columns very much. He especially loves beautiful tables. A table is beautiful to Levko if the sum of elements in each row and column of the table equals $ k $ . Unfortunately, he doesn't know any such table. Your task is to help him to find at least one of them.输入输出格式
输入格式
The single line contains two integers, $ n $ and $ k $ ( $ 1<=n<=100 $ , $ 1<=k<=1000 $ ).
输出格式
Print any beautiful table. Levko doesn't like too big numbers, so all elements of the table mustn't exceed $ 1000 $ in their absolute value. If there are multiple suitable tables, you are allowed to print any of them.
输入输出样例
输入样例 #1
2 4
输出样例 #1
1 3
3 1
输入样例 #2
4 7
输出样例 #2
2 1 0 4
4 0 2 1
1 3 3 0
0 3 2 2