답안 #856726

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
856726 2023-10-04T11:58:15 Z Halym2007 Red-blue table (IZhO19_stones) C++11
0 / 100
45 ms 1360 KB
#include <bits/stdc++.h>
using namespace std;
int a,b,c,d,t;

int main(){
	cin>>t;
	while(t--){
		cin>>a>>b;
		if(a < 3 or b < 3)	cout<<max(a, b)<<endl;
		if(a >= 3 and b >= 3){
			if(a == b)	cout<<a + b - 2;
			else{
				if(max(a, b) % min(a, b) == 0)	cout<<max(a, b) - (max(a, b) - min(a, b));
				else	cout<<max(a, b) - (max(a, b) - min(a, b)) + 1;
			}
			cout<<endl;
			for(int i=1; i <= (a / 2); i++){
				for(int j=1; j <= b; j++){
					if(j <= ((b / 2) + 1))	cout<<"+";
					else	cout<<"-";
				}
				cout<<endl;
			}
			for(int i=1; i <= 1; i++){
				for(int j=1; j <= b; j++){
					if(j == ((b / 2) + 1))	cout<<"+";
					else	cout<<"-";
				}
			}
			cout<<endl;
			for(int i=1; i <= (a / 2); i++){
				for(int j=1; j <= b; j++){
					if(j >= ((b / 2) + 1))	cout<<"+";
					else	cout<<"-";
				}
				cout<<endl;
			}
		}
	}
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Wrong answer
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 344 KB in the table A+B is not equal to 3
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Wrong answer
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 45 ms 1264 KB in the table A+B is not equal to 22
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 40 ms 1360 KB in the table A+B is not equal to 46
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Wrong answer
2 Halted 0 ms 0 KB -