시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB45312665.000%

문제

Alice took a clean sheet of paper and drew h horizontal and v vertical lines onto the paper.

The horizontal lines have y-coordinates y1, . . . , yh, and the vertical lines have x-coordinates x1, . . . , xv.

Given these coordinates, count the number of squares that appeared on the paper.

(The whole boundary of the square has to be drawn. The inside of the square does not have to be empty.)

입력

The first line of input contains the integers h and v (0 ≤ h, v ≤ 1500).

The second line of input contains a strictly increasing sequence consisting of h space-separated integers: y1, . . . , yh.

The third line of input contains a strictly increasing sequence consisting of v space-separated integers: x1, . . . , xv.

All horizontal and vertical coordinates are between 0 and 230, inclusive.

출력

Output a single line with a single integer: the total number of squares.

서브태스크

번호배점제한
17

h, v ≤ 2

240

h, v ≤ 600

353

No additional constraints

예제 입력 1

3 4
0 1 3
1 2 4 8

예제 출력 1

3

힌트

In the example there is one 1 × 1 square, one 2 × 2 square, and one 3 × 3 square.

채점 및 기타 정보

  • 예제는 채점하지 않는다.