# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
661107 | Trisanu_Das | Prosjecni (COCI16_prosjecni) | C++17 | 1 ms | 340 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;
int main() {
int n; cin >> n;
if (n <= 2) {
cout << (n == 1 ? 1 : -1) << '\n';
return 0;
}
int n2 = n * (n - 1) / 2;
for (int i = 1; i <= n; i++) {
int s = i < n ? (i - 1) * n2 : n2 * (n2 - 1);
for (int j = 1; j <= n; j++)
cout << s + (j < n ? j : n2) << ' ';
cout << '\n';
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |