답안 #490197

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
490197 2021-11-26T08:19:43 Z Ziyoda Red-blue table (IZhO19_stones) C++14
0 / 100
41 ms 1220 KB
#include <bits/stdc++.h>

using namespace std;

int main()
{
	ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
	int t;
	cin >> t;
	while(t--){
		int n, m;
		cin >> n >> m;
		if(n<m){
			int e = (n-1)/2;
			cout << m+e << endl;
			for(int i=0; i<n; i++){
				if(e!=0){
					for(int j=0; j<m; j++)
						cout << '+';
					e--;
				}
				else{
					for(int j=0; j<m; j++)
						cout << '-';
				}
				cout << endl;
			}
		}
		else{
			int e = (m-1)/2;
			cout << n+e << endl;
			for(int i=0; i<n; i++){
					if(e!=0){
						for(int j=0; j<m; j++)
							cout << '-';
						e--;
					}
					else{
						for(int j=0; j<m; j++)
							cout << '+';
					}
				cout << endl;
			}
		}
	}
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 204 KB in the table A+B is not equal to 4
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 7 ms 204 KB in the table A+B is not equal to 5
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 204 KB in the table A+B is not equal to 4
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 41 ms 1220 KB in the table A+B is not equal to 107
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 31 ms 1220 KB in the table A+B is not equal to 35
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 204 KB in the table A+B is not equal to 4
2 Halted 0 ms 0 KB -