题库练习 Where's the Bishop?
← 上一题 下一题 →

A15085 | Where's the Bishop?

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

题目描述

Mihai has an $8 \times 8$ chessboard whose rows are numbered from $1$ to $8$ from top to bottom and whose columns are numbered from $1$ to $8$ from left to right.

Mihai has placed exactly one bishop on the chessboard. The bishop is not placed on the edges of the board. (In other words, the row and column of the bishop are between $2$ and $7$ , inclusive.)

The bishop attacks in all directions diagonally, and there is no limit to the distance which the bishop can attack. Note that the cell on which the bishop is placed is also considered attacked.

![](/uploads/acgo/image/cf5f108b7746ee87_5aa28939d231.jpeg)An example of a bishop on a chessboard. The squares it attacks are marked in red.Mihai has marked all squares the bishop attacks, but forgot where the bishop was! Help Mihai find the position of the bishop.

输入格式

The first line of the input contains a single integer $t$ ( $1 \leq t \leq 36$ ) — 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 '\#' or '.', denoting a square under attack and a square not under attack, respectively.

输出格式

For each test case, output two integers $r$ and $c$ ( $2 \leq r, c \leq 7$ ) — the row and column of the bishop.

The input is generated in such a way that there is always exactly one possible location of the bishop that is not on the edge of the board.

输入输出样例

输入 #1
3

.....#..
#...#...
.#.#....
..#.....
.#.#....
#...#...
.....#..
......#.

#.#.....
.#......
#.#.....
...#....
....#...
.....#..
......#.
.......#

.#.....#
..#...#.
...#.#..
....#...
...#.#..
..#...#.
.#.....#
#.......
输出 #1
4 3
2 2
4 5
C++ 编辑器
输入
输出