# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
146722 | fran_1024 | Prosjecni (COCI16_prosjecni) | C++14 | 2 ms | 376 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 <iostream>
using namespace std;
int main() {
int n;
cin >> n;
int x = n * n;
if(n & 1) for(int i = 0; i < x; i++) {
cout << i + 1 << ' ';
if((i + 1) % n == 0) {
cout << '\n';
}
} else cout << -1;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |