# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
735083 | vjudge1 | Spiderman (COCI20_spiderman) | C++17 | 198 ms | 17008 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
// 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 |
---|---|---|---|---|
Fetching results... |