답안 #661107

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
661107 2022-11-24T12:48:11 Z Trisanu_Das Prosjecni (COCI16_prosjecni) C++17
120 / 120
1 ms 340 KB
#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';
	}
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Correct 0 ms 212 KB Output is correct
3 Correct 0 ms 300 KB Output is correct
4 Correct 1 ms 212 KB Output is correct
5 Correct 1 ms 212 KB Output is correct
6 Correct 1 ms 212 KB Output is correct
7 Correct 1 ms 212 KB Output is correct
8 Correct 1 ms 340 KB Output is correct
9 Correct 1 ms 340 KB Output is correct
10 Correct 1 ms 340 KB Output is correct