0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 06:05:25 +00:00
OI-codes/Luogu/P1102/P1102.cpp

20 lines
340 B
C++
Raw Normal View History

2020-10-15 11:54:14 +00:00
#include <bits/stdc++.h>
using namespace std;
int main() {
2021-11-19 09:01:13 +00:00
long long n, c, ans = 0;
int a[200005];
2020-10-15 11:54:14 +00:00
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;
}