CF2009B.osu!mania

传统题 时间 2000 ms 内存 256 MiB 3 尝试 1 已通过 1 标签

osu!mania

You are playing your favorite rhythm game, osu!mania. The layout of your beatmap consists of nn rows and 44 columns. Because notes at the bottom are closer, you will process the bottommost row first and the topmost row last. Each row will contain exactly one note, represented as a '#'.

For each note 1,2,,n1, 2, \dots, n, in the order of processing, output the column in which the note appears.

Input

The first line contains tt (1t1001 \leq t \leq 100) — the number of test cases.

For each test case, the first line contains nn (1n5001 \leq n \leq 500) — the number of rows of the beatmap.

The following nn lines contain 44 characters. The ii-th line represents the ii-th row of the beatmap from the top. It is guaranteed that the characters are either '.' or '#', and exactly one of the characters is '#'.

It is guaranteed that the sum of nn over all test cases does not exceed 500500.

Output

For each test case, output nn integers on a new line, the column that the ii-th note appears in for all ii from 11 to nn.

Samples

3
4
#...
.#..
..#.
...#
2
.#..
.#..
1
...#
4 3 2 1 
2 2 
4 

在线编程 IDE

建议全屏模式获得最佳体验