CF12E.Start of the season

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Before the start of the football season in Berland a strange magic ritual is held. The most experienced magicians have to find a magic matrix of the size n×nn×n ( nn is even number). Gods will never allow to start the championship without it. Matrix should contain integers from 00 to n1n-1 , main diagonal should contain only zeroes and matrix should be symmetric. Moreover, all numbers in each row should be different. Magicians are very tired of the thinking process, so they ask you to write a program to find such matrix.

输入格式

The first line contains one integer nn ( 2<=n<=10002<=n<=1000 ), nn is even.

输出格式

Output nn lines with nn numbers each — the required matrix. Separate numbers with spaces. If there are several solutions, output any.

输入输出样例

  • 输入#1

    2
    

    输出#1

    0 1
    1 0
    
  • 输入#2

    4
    

    输出#2

    0 1 3 2
    1 0 2 3
    3 2 0 1
    2 3 1 0
    
首页