시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 512 MB23217815180.319%

문제

You would like to implement a simple simulation of gravity on a 2-dimensional grid, consisting of n rows and m columns.

Some grid cells may contain obstacles, some may contain a single apple, and all others are empty.

The following rules are followed until no further changes are possible:

  • The obstacles do not move.
  • Whenever there is an empty cell immediately below an apple, the apple moves into the empty cell.

Find the final configuration of the grid after all apples have settled.

입력

The first line of input contains two space-separated integers n and m (1 ≤ n, m ≤ 50).

Each of the next n lines contains m characters, describing the board, from top to bottom. Obstacles are denoted as ‘#’, apples are denoted as ‘o’, and empty cells are denoted as ‘.’.

출력

Print, on n lines, the final configuration of the grid after executing the rules stated above.

예제 입력 1

3 3
ooo
#..
..#

예제 출력 1

o..
#.o
.o#

예제 입력 2

4 2
oo
oo
o.
..

예제 출력 2

..
o.
oo
oo