제출 #209083

#제출 시각아이디문제언어결과실행 시간메모리
209083MertD014Prosjecni (COCI16_prosjecni)C++17
24 / 120
8 ms376 KiB
#include <bits/stdc++.h>
using namespace std;
int n;
int main(){
  	//subtask :D
	//freopen("all.in","r",stdin);
	//freopen("all.out","w",stdout);
	cin>>n;
	if(n%2){
		for(int i=0;i<n;i++){
			for(int j=0;j<n;j++)
				cout<<i*n+j+1<<" ";
			cout<<endl;
		}
	}
	else cout<<"-1";
	return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...