3534.Cakeminator

Time Limit: 1s Memory Limit: 256MB

You are given a rectangular cake, represented as an r \times c grid. Each cell either has an evil strawberry, or is empty. For example, a 3 \times 4 cake may look as follows: 3534_1.png The cakeminator is going to eat the cake! Each time he eats, he chooses a row or a column that does not contain any evil strawberries and contains at least one cake cell that has not been eaten before, and eats all the cake cells there. He may decide to eat any number of times.Please output the maximum number of cake cells that the cakeminator can eat.

Input Format(From the terminal/stdin)

Input The first line contains two integers r and c (2 \le r,c \le 10), denoting the number of rows and the number of columns of the cake. The next r lines each contains c characters - the j-th character of the i-th line denotes the content of the cell at row i and column j, and is either one of these: '.' character denotes a cake cell with no evil strawberry; 'S' character denotes a cake cell with an evil strawberry.

Output Format(To the terminal/stdout)

Output Output the maximum number of cake cells that the cakeminator can eat.

Sample Input

Copy
3 4
S...
....
..S.
 · \n
    \n
    \n
    \n

Sample Output

Copy
8
 \n

Hints

For the first example, one possible way to eat the maximum number of cake cells is as follows (perform 3 eats). 3534_2.png3534_3.png3534_4.png

Submit

请先 登录

© 2025 FAQs