eolymp
bolt
Try our new interface for solving problems
Problems

Equilateral Triangles

Equilateral Triangles

Farmer John's pasture can be represented by a n × n square grid consisting of positions (i, j) for all i, j (1i, jn). For each square of the grid, the corresponding character in the input is equal to '*' if there exists a single cow at that position and '.' if there does not exist a cow at that position.

FJ believes that the beauty of his pasture is directly proportional to the number of triples of cows such that their positions are equidistant from each other. In other words, they form an equilateral triangle. Unfortunately, it was only quite recently that FJ realized that since all of his cows are located at integer coordinates, no beautiful triples can possibly exist if Euclidean distance is used! Thus, FJ has decided to switch to use "Manhattan" distance instead. Formally, the Manhattan distance between two positions (x0, y0) and (x1, y1) is equal to |x0x1| + |y0y1|.

Given the grid representing the positions of the cows, compute the number of equilateral triples.

Input

The first line contains a single integer n (1n300). For each i (1in), line i + 1 contains a string of length n consisting solely of the characters '*' and '.'. The j-th character describes whether there exists a cow at position (i, j) or not.

Output

Output a single integer containing the answer. It can be shown that it fits into a signed 32-bit integer.

Example

There are three cows, and they form an equilateral triple because the Manhattan distance between each pair of cows is equal to two.

Time limit 1 second
Memory limit 128 MiB
Input example #1
3
*..
.*.
*..
Output example #1
1
Source 2020 USACO February, Platinum