답안 #855872

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
855872 2023-10-02T06:01:12 Z Halym2007 Red-blue table (IZhO19_stones) C++11
0 / 100
44 ms 1372 KB
#include <bits/stdc++.h>
using namespace std;
const int N = 1e3 + 5;
char jog[N][N];
int main () {
//	freopen("input.txt", "r", stdin);
	int t;
	cin >> t;
	while ( t-- ) {
		int n, m;
		cin >> n >> m;
		if (min(n, m) == 1) {
			char c;
			if (n == 1) c = '-';
			else c = '+';
			cout << max (n, m) << endl;
			for (int i = 1; i <= n; ++i) {
				for (int j = 1; j <= m; ++j) {
					jog[i][j] = c;
				}
			}
		}
		else if (n >= m) {
			for (int i = 1; i <= n; ++i) {
				for (int j = 1; j <= m; ++j) {
					jog[i][j] = '1';
				}
			}
			for (int i = 1; i <= n; ++i) {
				for (int j = 1; j <= m / 2 + 1; ++j) {
					jog[i][j] = '+';
				}
			}
			cout << n + (m - (m / 2 + 1)) << endl;
			for (int i = 1; i <= n; ++i) {
				for (int j = 1; j <= m; ++j) {
					if (jog[i][j] == '1') jog[i][j] = '-';
				}
			}
		}
		else {
			for (int i = 1; i <= n; ++i) {
				for (int j = 1; j <= m; ++j) {
					jog[i][j] = '1';
				}
			}
			for (int i = 1; i <= m; ++i) {
				for (int j = 1; j <= n / 2 + 1; ++j) {
					jog[j][i] = '+';
				}
			}
			cout << m + (n - (n / 2 + 1)) << endl;
			for (int i = 1; i <= n; ++i) {
				for (int j = 1; j <= m; ++j) {
					if (jog[i][j] == '1') jog[i][j] = '+';
				}
			}
		}
		for (int i = 1; i <= n; ++i) {
			for (int j = 1; j <= m; ++j) {
				cout << jog[i][j];
			}
			cout << endl;
		}
	}
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 344 KB Output is correct
2 Incorrect 0 ms 348 KB in the table A+B is not equal to 4
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 348 KB in the table A+B is not equal to 46
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 344 KB Output is correct
2 Incorrect 0 ms 348 KB in the table A+B is not equal to 4
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 44 ms 1368 KB Wrong answer in test 97 21: 107 < 116
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 33 ms 1372 KB Wrong answer in test 24 24: 35 < 44
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 344 KB Output is correct
2 Incorrect 0 ms 348 KB in the table A+B is not equal to 4
3 Halted 0 ms 0 KB -