// author: MisterReaper (Ahmet Alp Orakci)
#include <bits/stdc++.h>
using namespace std;
#define int long long
const int MAXH = 1e6 + 5;
#define ONLINE_JUDGE
#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]--;
}
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;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
12 ms |
8284 KB |
Output is correct |
2 |
Correct |
17 ms |
8148 KB |
Output is correct |
3 |
Correct |
41 ms |
9292 KB |
Output is correct |
4 |
Correct |
83 ms |
11504 KB |
Output is correct |
5 |
Correct |
103 ms |
15412 KB |
Output is correct |
6 |
Correct |
179 ms |
17000 KB |
Output is correct |
7 |
Correct |
112 ms |
15324 KB |
Output is correct |
8 |
Correct |
96 ms |
15296 KB |
Output is correct |
9 |
Correct |
196 ms |
16936 KB |
Output is correct |
10 |
Correct |
198 ms |
17008 KB |
Output is correct |