답안 #146722

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
146722 2019-08-25T16:00:09 Z fran_1024 Prosjecni (COCI16_prosjecni) C++14
24 / 120
2 ms 376 KB
#include <iostream>
using namespace std;

int main() {
	int n;
	cin >> n;
	int x = n * n;
	if(n & 1) for(int i = 0; i < x; i++) {
		cout << i + 1 << ' ';
		if((i + 1) % n == 0) {
			cout << '\n';
		}
	} else cout << -1;
	return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 376 KB Integer -1 violates the range [0, 1000000000]
2 Correct 2 ms 256 KB Output is correct
3 Incorrect 2 ms 376 KB Integer -1 violates the range [0, 1000000000]
4 Correct 2 ms 376 KB Output is correct
5 Incorrect 2 ms 256 KB Integer -1 violates the range [0, 1000000000]
6 Incorrect 2 ms 256 KB Integer -1 violates the range [0, 1000000000]
7 Incorrect 2 ms 376 KB Integer -1 violates the range [0, 1000000000]
8 Incorrect 2 ms 376 KB Integer -1 violates the range [0, 1000000000]
9 Incorrect 2 ms 376 KB Integer -1 violates the range [0, 1000000000]
10 Incorrect 2 ms 376 KB Integer -1 violates the range [0, 1000000000]