Equilateral Triangles

소가 있는 N×N 격자가 주어질 때, 세 쌍의 맨해튼 거리가 모두 같은 소 세 마리의 조합, 즉 맨해튼 거리에서 정삼각형을 이루는 조합의 수를 센다.

어려움8기하수학완전 탐색구현아직 제출이 없습니다시간 제한2초메모리 제한512 MB

문제

Farmer John's pasture can be represented by a N×NN\times N square grid (1N300)(1\le N\le 300) consisting of positions (i,j)(i,j) for all 1i,jN1\le i,j\le N. 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 (x_0,y_0)(x\_0,y\_0) and (x_1,y_1)(x\_1,y\_1) is equal to x_0x_1+y_0y_1|x\_0-x\_1|+|y\_0-y\_1|.

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

입력

The first line contains a single integer N.N.

For each 1iN,1\le i\le N, line i+1i+1 of the input contains a string of length NN consisting solely of the characters '*' and '.'. The jjth character describes whether there exists a cow at position (i,j)(i,j) or not.

출력

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

힌트

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