답안 #372329

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
372329 2021-02-27T16:36:09 Z mariowong Red-blue table (IZhO19_stones) C++14
0 / 100
34 ms 1516 KB
#include <bits/stdc++.h>
using namespace std;

int t,n,m;
char ans[1005][1005];
int main(){
	ios::sync_with_stdio(false);
	cin >> t;
	while (t--){
		cin >> n >> m;
		cout << max(n,m)+min(n,m)/2 << "\n";
		if (n > m){
			for (int i=1;i<=m;i+=2){
				for (int j=1;j<=n;j++){
					ans[j][i]='+';
					ans[j][i+1]='-';
				}
			}
			if (m%2 == 0){
				for (int i=1;i<=n;i++){
					ans[i][m]='+';
				}
			}
		}
		else
		{
			for (int i=1;i<=n;i+=2){
				for (int j=1;j<=m;j++){
					ans[i][j]='-';
					ans[i+1][j]='+';
				}
			}
			if (n%2 == 0){
				for (int i=1;i<=m;i++){
					ans[n][i]='-';
				}
			}
		}
		for (int i=1;i<=n;i++){
			for (int j=1;j<=m;j++){
				cout << ans[i][j];
			}
			cout << "\n";
		}
	}
    return 0;
}	
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 364 KB Output is correct
2 Incorrect 1 ms 364 KB in the table A+B is not equal to 5
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 364 KB in the table A+B is not equal to 21
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 364 KB Output is correct
2 Incorrect 1 ms 364 KB in the table A+B is not equal to 5
# 결과 실행 시간 메모리 Grader output
1 Incorrect 34 ms 1516 KB Wrong answer in test 97 21: 107 < 116
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 33 ms 1516 KB in the table A+B is not equal to 36
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 364 KB Output is correct
2 Incorrect 1 ms 364 KB in the table A+B is not equal to 5