Files
python/TangDou/LuoGuBook/P1102_2.cpp
HuangHai 1f397eca87 'commit'
2025-08-30 18:35:01 +08:00

18 lines
357 B
C++

#include <bits/stdc++.h>
using namespace std;
const int N = 200010;
typedef long long LL;
unordered_map<int, int> _map;
int a[N];
int n;
int c;
LL ans;
int main() {
cin >> n >> c;
for (int i = 1; i <= n; i++)cin >> a[i], _map[a[i]]++;
for (int i = 1; i <= n; i++)ans += _map[a[i] - c];
cout << ans << endl;
return 0;
}