CF334A.Candy Bags

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Gerald has nn younger brothers and their number happens to be even. One day he bought n2n^{2} candy bags. One bag has one candy, one bag has two candies, one bag has three candies and so on. In fact, for each integer kk from 11 to n2n^{2} he has exactly one bag with kk candies.

Help him give nn bags of candies to each brother so that all brothers got the same number of candies.

输入格式

The single line contains a single integer nn ( nn is even, 2<=n<=1002<=n<=100 ) — the number of Gerald's brothers.

输出格式

Let's assume that Gerald indexes his brothers with numbers from 11 to nn . You need to print nn lines, on the ii -th line print nn integers — the numbers of candies in the bags for the ii -th brother. Naturally, all these numbers should be distinct and be within limits from 11 to n2n^{2} . You can print the numbers in the lines in any order.

It is guaranteed that the solution exists at the given limits.

输入输出样例

  • 输入#1

    2
    

    输出#1

    1 4
    2 3
    

说明/提示

The sample shows Gerald's actions if he has two brothers. In this case, his bags contain 1, 2, 3 and 4 candies. He can give the bags with 1 and 4 candies to one brother and the bags with 2 and 3 to the other brother.

首页