蛇形矩阵
Description
输出N x N的蛇形矩阵,格式如下
Format
Input
输入包括1个数字N(N <= 1000)
Output
输出N x N 的蛇形矩阵,每个数后跟着一个空格(包括行末)!
Sample 1
Input
5
Output
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
Limitation
1s, 128MB for each test case.