문제
Farmer John's pasture can be represented by a
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
Given the grid representing the positions of the cows, compute the number of equilateral triples.
SCORING:
There will be fourteen test cases aside from the sample, one for each of
Problem credits: Benjamin Qi
입력
The first line contains a single integer
For each
출력
Output a single integer containing the answer. It can be shown that it fits into a signed 32-bit integer.
예제1
3
*..
.*.
*..
1
There are three cows, and they form an equilateral triple because the Manhattan distance between each pair of cows is equal to two.