Problem D: 方阵填数
Memory Limit:125 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:29
Solved:23
Description
在一个N*N的方阵中,填入1,2,……N*N个数,并要求构成如下的格式:
例如:
N=5
13 14 15 16 1
12 23 24 17 2
11 22 25 18 3
10 21 20 19 4
9 8 7 6 5
N=6
16 17 18 19 20 1
15 30 31 32 21 2
14 29 36 33 22 3
13 28 35 34 23 4
12 27 26 25 24 5
11 10 9 8 7 6
Input
输入一个N。(N<=100)
Output
输出构成的方阵。
Sample Input Copy
5
Sample Output Copy
13 14 15 16 1
12 23 24 17 2
11 22 25 18 3
10 21 20 19 4
9 8 7 6 5
HINT
6
-------------------------
16 17 18 19 20 115 30 31 32 21 2
14 29 36 33 22 3
13 28 35 34 23 4
12 27 26 25 24 5
11 10 9 8 7 6