#206. 蛇形方阵
蛇形方阵
Description
By way of example, for pastures of size N=3 and N=4, here are the routes Bessie should use:
1 2 3
8 9 4
7 6 5
n=4
1 2 3 4
12 13 14 5
11 16 15 6
10 9 8 7
Input Format
A single integer: N (1 <= N <= 750)
Output Format
Lines 1..N: N space-separated integers
Sample
input
3
output
1 2 3
8 9 4
7 6 5
Hint
时间限制:
空间限制: