문제
Farmer John's largest pasture can be regarded as a large 2D grid of square "cells" (picture a huge chess board). Currently, there are
Farmer John wants to build a fence that will enclose a square region of cells; the square must be oriented so its sides are parallel with the
입력
The first line contains a single integer
Note that although the coordinates of cells with cows are nonnegative, the square fenced area might possibly extend into cells with negative coordinates.
출력
The number of subsets of cows that FJ can fence off. It can be shown that this quantity fits within a signed 32-bit integer.
예제1
4
0 2
2 3
3 1
1 0
14
In this example, there are
예제2
16
17 4
16 13
0 15
1 19
7 11
3 17
6 16
18 9
15 6
11 7
10 8
2 1
12 0
5 18
14 5
13 2
420