# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
102293 | SirCeness | Prosjecni (COCI16_prosjecni) | C++14 | 5 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define mod 1000000007
typedef long long ll;
using namespace std;
int n;
int mat[100][100];
int arr[100];
int main(){
//freopen("baskent.gir", "r", stdin);
cin >> n;
if (n == 1){
cout << "1" << endl;
return 0;
} else if (n == 2){
cout << "-1" << endl;
return 0;
}
for (int i = 0; i < n-1; i++){
arr[i] = i+1;
}
arr[n-1] = (n-1)*(n-1) - (n-2)*(n-1)/2;
//for (int i = 0; i < n; i++) cout << arr[i] << " "; cout << endl;
for (int i = 0; i < n; i++){
for (int j = 0; j < n; j++){
mat[i][j] = arr[i]*10000;
}
}
for (int i = 0; i < n; i++){
for (int j = 0; j < n; j++){
mat[i][j] += arr[j];
}
}
for (int i = 0; i < n; i++){
for (int j = 0; j < n; j++){
cout << mat[i][j] << " ";
}
cout << endl;
}
cout << endl;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |