# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
623549 | inksamurai | Prosjecni (COCI16_prosjecni) | C++17 | 1 ms | 328 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i=0;i<n;i++)
#define _3SgiE60 ios::sync_with_stdio(0),cin.tie(0)
// e
signed main(){
_3SgiE60;
int n;
cin>>n;
if(n%2==0){
printf("-1\n");
return 0;
}
rep(i,n){
rep(j,n){
printf("%d ",i*n+j+1);
}
puts("");
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |