Submission #167715

# Submission time Handle Problem Language Result Execution time Memory
167715 2019-12-09T18:49:32 Z munhorgil Red-blue table (IZhO19_stones) C++14
11 / 100
93 ms 1276 KB
#include<bits/stdc++.h>

using namespace std;

int main()
{
	int t , i , j , m , n , ans , a , b;
	
	cin >> t;
	
	while(t > 0)
	{
		cin >> n >> m;
		
		if(n % 2 == 0) a = n - 2;
			else a = n - 1;
		if(m % 2 == 0) b = m - 2;
			else b = m - 1;
		
		if(n == 1)
		{
			cout << m << endl;
			goto here;
		}
		if(m == 1)
		{
			cout << n << endl;
			for(i = 0 ; i < n ; i++)
			{
				cout << "+" << endl;
			}
			goto there;
		}
		
		ans = a + b;
		
		cout << ans << endl;
		
		for(j = 0 ; j < a / 2 ; j++)
		{
			for(i = 0 ; i < b / 2 ; i++)
			{
				cout << "+";
			}
			for(i = 0 ; i < b / 2 ; i++)
			{
				cout << "-";
			}
			for(i = 0 ; i < (m - b) ; i++)
			{
				cout << "+";
			}
			cout << endl;
		}
		for(j = 0 ; j < a / 2 ; j++)
		{
			for(i = 0 ; i < b / 2 ; i++)
			{
				cout << "-";
			}
			for(i = 0 ; i < b / 2 ; i++)
			{
				cout << "+";
			}
			for(i = 0 ; i < (m - b) ; i++)
			{
				cout << "+";
			}
			cout << endl;
		}
		here:;
		for(j = 0 ; j < (n - a) ; j++)
		{
			for(i = 0 ; i < m ; i++)
			{
				cout << "-";
			}
			cout << endl;
		}
		
		there:;
		
		t--;
	}
}
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Output is correct
2 Incorrect 2 ms 376 KB in the table A+B is not equal to 2
# Verdict Execution time Memory Grader output
1 Incorrect 14 ms 376 KB Wrong answer in test 20 2: 18 < 20
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Output is correct
2 Incorrect 2 ms 376 KB in the table A+B is not equal to 2
# Verdict Execution time Memory Grader output
1 Correct 93 ms 1276 KB Output is correct
2 Correct 40 ms 1168 KB Output is correct
3 Correct 41 ms 1144 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 67 ms 1272 KB in the table A+B is not equal to 0
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Output is correct
2 Incorrect 2 ms 376 KB in the table A+B is not equal to 2