제출 #1049004

#제출 시각아이디문제언어결과실행 시간메모리
1049004EntityPlanttMake them Meet (EGOI24_makethemmeet)C++17
0 / 100
0 ms348 KiB
#include <iostream>
using namespace std;

signed main() {
	ios::sync_with_stdio(0);
	cin.tie(0); cout.tie(0);
	int n;
	cin >> n;
	cout << 2 * n - 2;
	for (int i = 1; i < n; i++) {
		cout << '\n';
		for (int j = 0; j < n; j++) {
			if (i == j) cout << "0 ";
			else cout << j << ' ';
		}
	}
	for (int i = 1; i < n; i++) {
		cout << '\n';
		for (int j = 0; j < n; j++) {
			if (i == j) cout << "0 ";
			else cout << j << ' ';
		}
	}
	return 0;
}
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…