CF1333A.Little Artem
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Young boy Artem tries to paint a picture, and he asks his mother Medina to help him. Medina is very busy, that's why she asked for your help.
Artem wants to paint an n×m board. Each cell of the board should be colored in white or black.
Lets B be the number of black cells that have at least one white neighbor adjacent by the side. Let W be the number of white cells that have at least one black neighbor adjacent by the side. A coloring is called good if B=W+1 .
The first coloring shown below has B=5 and W=4 (all cells have at least one neighbor with the opposite color). However, the second coloring is not good as it has B=4 , W=4 (only the bottom right cell doesn't have a neighbor with the opposite color).
Please, help Medina to find any good coloring. It's guaranteed that under given constraints the solution always exists. If there are several solutions, output any of them.
输入格式
Each test contains multiple test cases.
The first line contains the number of test cases t ( 1≤t≤20 ). Each of the next t lines contains two integers n,m ( 2≤n,m≤100 ) — the number of rows and the number of columns in the grid.
输出格式
For each test case print n lines, each of length m , where i -th line is the i -th row of your colored matrix (cell labeled with 'B' means that the cell is black, and 'W' means white). Do not use quotes.
It's guaranteed that under given constraints the solution always exists.
输入输出样例
输入#1
2 3 2 3 3
输出#1
BW WB BB BWB BWW BWB
说明/提示
In the first testcase, B=3 , W=2 .
In the second testcase, B=5 , W=4 . You can see the coloring in the statement.