/*
Author: Nguyen Chi Thanh - High School for the Gifted - VNU.HCM (i2528)
*/
#include <bits/stdc++.h>
using namespace std;
/* START OF TEMPALTE */
// #define int long long
#define ll long long
#define ull unsigned long long
#define ld long double
#define pii pair<int, int>
#define pll pair<ll, ll>
#define fi first
#define se second
#define popcount __builtin_popcountll
#define all(x) (x).begin(), (x).end()
#define BIT(x, i) (((x) >> (i)) & 1)
#define MASK(x) (1ll << (x))
#define SZ(a) ((int32_t)a.size())
#define debug(a, l, r) {for (int _i = (l); _i <= (r); ++_i) cout << (a)[_i] << ' '; cout << '\n';}
template<class X, class Y>
bool minimize(X &x, const Y &y) {
if (x > y) {
x = y;
return true;
} else return false;
}
template<class X, class Y>
bool maximize(X &x, const Y &y) {
if (x < y) {
x = y;
return true;
} else return false;
}
/* END OF TEMPALTE */
const int MAXN = 3e5 + 5;
const int MAXA = 1e6;
int n, k, h[MAXN];
int cnt[MAXA + 5]; ll numdiv[MAXA + 5];
void init() {
cin >> n >> k;
for (int i = 1; i <= n; ++i) {
cin >> h[i];
if (h[i] > k) cnt[h[i]]++;
}
for (int i = 1; i <= MAXA; ++i) {
if (cnt[i] == 0) continue;
for (int j = 0; j <= MAXA; j += i)
numdiv[j] += cnt[i];
}
}
void solve() {
for (int i = 1; i <= n; ++i) {
if (k == 0) {
cout << numdiv[h[i]] - 1 << ' ';
continue;
}
if (h[i] < k) cout << 0 << ' ';
else cout << numdiv[h[i] - k] << ' ';
}
}
signed main() {
#ifdef NCTHANH
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
ios_base::sync_with_stdio(0);
cin.tie(nullptr); cout.tie(nullptr);
init();
solve();
return 0;
}