0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 12:45:25 +00:00
OI-codes/problem/P1102/P1102.cpp
2020-10-15 19:54:14 +08:00

20 lines
354 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
long long n, c, ans = 0;
int a[200005];
map<int, int> b;
cin >> n >> c;
for (int i = 1; i <= n; i++) {
cin >> a[i];
b[a[i]]++;
}
for (int i = 1; i <= n; i++) {
ans += b[a[i] + c];
}
cout << ans << endl;
return 0;
}