3182: A-B数对(洛谷P1102)

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:1 Solved:1

Description

给出一串正整数数列以及一个正整数 C,要求计算出所有满足A-B=C的数对的个数(不同位置的数字一样的数对算不同的数对)。

Input

输入2行。第一行,两个正整数 N、C;第二行,N个正整数,作为要求处理的那串数。1≤N≤2000,1≤C<2³⁰

Output

输出1行。表示该串正整数中包含的满足A-B=C的数对的个数。

Sample Input Copy

4 1
1 1 2 3

Sample Output Copy

3