# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1055384 | fryingduc | Prosjecni (COCI16_prosjecni) | C++17 | 1 ms | 604 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.
/**
* author: limwu
* created:25.08.2022 09:53:27
**/
/* #pragma GCC optimize("Ofast,unroll-loops") */
#include "bits/stdc++.h"
using namespace std;
#ifdef duc_debug
#include "bits/debug.h"
#else
#define debug(...)
#endif
#define int long long
int n;
void solve(){
cin >> n;
if(n % 2){
int cnt = 1;
for(int i = 1; i <= n; ++i){
for(int j = 1; j <= n; ++j){
cout << (cnt++) << " " ;
}
cout << '\n';
}
}
else{
if(n == 2) cout << -1;
else{
vector<vector<int>> a(n + 1, vector<int>(n + 1, 0));
for(int i = 1; i <= n; ++i) a[1][i] = i;
a[1][n] = n * (n - 1) / 2;
for(int i = 2; i <= n; ++i){
for(int j = 1; j <= n; ++j){
a[i][j] = a[i - 1][j] + a[1][n];
}
}
for(int j = 1; j <= n; ++j){
a[n][j] = n * a[n - 1][j];
for(int i = 1; i < n; ++i){
a[n][j] -= a[i][j];
}
}
for(int i = 1; i <= n; ++i){
for(int j = 1; j <= n; ++j) cout << a[i][j] << " ";
cout << '\n';
}
}
}
}
signed main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
int test = 1;
/* cin >> test; */
for(int i = 1; i <= test; i++){
/* cout << "Case " << "#" << i << ": "; */
solve();
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |