题库练习 Stripes
← 上一题 下一题 →

A15389 | Stripes

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

On an $8 \times 8$ grid, some horizontal rows have been painted red, and some vertical columns have been painted blue, in some order. The stripes are drawn sequentially, one after the other. When the stripe is drawn, it repaints all the cells through which it passes.

Determine which color was used last.

![](/uploads/acgo/image/0f741679d2cbaa93_180c590d81d4.jpeg)The red stripe was painted after the blue one, so the answer is R.

输入格式

The first line of the input contains a single integer $t$ ( $1 \leq t \leq 4000$ ) — the number of test cases. The description of test cases follows. There is an empty line before each test case.

Each test case consists of $8$ lines, each containing $8$ characters. Each of these characters is either 'R', 'B', or '.', denoting a red square, a blue square, and an unpainted square, respectively.

It is guaranteed that the given field is obtained from a colorless one by drawing horizontal red rows and vertical blue columns.

At least one stripe is painted.

输出格式

For each test case, output 'R' if a red stripe was painted last, and 'B' if a blue stripe was painted last (without quotes).

输入输出样例

输入 #1
4


....B...
....B...
....B...
RRRRRRRR
....B...
....B...
....B...
....B...


RRRRRRRB
B......B
B......B
B......B
B......B
B......B
B......B
RRRRRRRB


RRRRRRBB
.B.B..BB
RRRRRRBB
.B.B..BB
.B.B..BB
RRRRRRBB
.B.B..BB
.B.B..BB


........
........
........
RRRRRRRR
........
........
........
........
输出 #1
R
B
B
R
C++ 编辑器
输入
输出