// author: MisterReaper (Ahmet Alp Orakci)
#include <bits/stdc++.h>
using namespace std;
#define int long long
const int MAXH = 1e6 + 5;
#ifndef ONLINE_JUDGE
#include "debug.h"
#define OPEN freopen(".in", "r", stdin); freopen(".out", "w", stdout);
#define TIME cerr << "\n" << fixed << setprecision(2) << 1000.0 * clock() / CLOCKS_PER_SEC << " milliseconds ";
#else
#define debug(...) void(23)
#define OPEN void(0000)
#define TIME void(232323233)
#endif
int ans[MAXH];
void solve()
{
int n, k; cin >> n >> k;
int arr[n];
for(int &i : arr) cin >> i;
map <int, int> mp;
for(int i : arr) mp[i]++;
for(auto i : mp)
{
if(i.first <= k) continue;
for(int j = k; j < MAXH; j += i.first)
ans[j] += i.second;
if(k == 0) ans[i.first] -= i.second;
}
for(int i : arr) cout << ans[i] << " ";
return;
}
int32_t main()
{
OPEN;
ios_base::sync_with_stdio(false);
cin.tie(NULL); cout.tie(NULL);
int t = 1; //cin >> t;
while(t--)
{
solve();
}
TIME;
return 0;
}
Compilation message
spiderman.cpp:9:14: fatal error: debug.h: No such file or directory
9 | #include "debug.h"
| ^~~~~~~~~
compilation terminated.