시간 제한메모리 제한제출정답맞힌 사람정답 비율
5 초 128 MB48221644.444%

문제

A Swedish millionaire wants to build a monument for her family. The names of all of her known ancestors (and later, her future descendants) will be inscribed to the sides of the monument. The form of the monument will be a rectangular block with a × a bottom/top squares and height b. That is, the bottom and top of the block will be a × a squares, and each of the four sides of the monument is an a × b rectangle. The values of a and b should be such that the four sides have as much space as possible, in order to fit as many names as possible.

The monument will be cut from a very special p × q × r rectangular stone block that has been crystallised in a regular cubic form. That is, we may view the stone as being composed of 1 × 1 × 1 unit blocks (unit cubes). Also the final monument will be composed of such unit cubes. The raw stone may only be cut perpendicular to the x-, y- or z-axis, along the borders between unit cubes.

The raw stone contains pores, in the form of empty unit cubes. The monument is required to be of high quality and is thus not allowed to contain any pores (empty unit cubes). You are given a 3D-map of the raw stone. The map describes which unit cubes are normal and which empty. Your task is to find such values for the size parameters a and b of the monument that

  1. it is possible to cut the monument out of the supplied raw stone block, and
  2. the monument contains maximal amount of space on its four sides, that is, the value 4ab is as large as possible.

입력

The input is read from standard input. The first line contains three positive integers separated by singles space characters: the values p, q and r. This is followed by pq lines, each of which contains r characters (and a new line character, no other white space). Each of the r characters is either N (normal) or P (pore). The zth character on line 1 + (yp + x − p) corresponds to the unit cube with coordinates (x,y,z) within the raw stone, where 1 ≤ x ≤ p, 1 ≤ y ≤ q and 1 ≤ z ≤ r. 

출력

The program should write one line to standard output containing the maximal value of 4ab.

제한

  • 0 < p, q, r ≤ 150

예제 입력 1

3 2 5
PNNNN
PNNNN
NPPNP
PNNNP
NNNNP
PPNNP

예제 출력 1

24