#include<bits/stdc++.h>
#define lcm(a,b) (a/__gcd(a,b))*b
#define fast ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define ll long long int
#define vi vector<int>
#define vll vector<ll>
#define pb push_back
#define F first
#define S second
#define mp make_pair
//salida rapida "\n"
//DECIMALES fixed<<sp(n)<<x<<endl;
//gcd(a,b)= ax + by
//lCB x&-x
//set.erase(it) - ersases the element present at the required index//auto it = s.find(element)
//set.find(element) - iterator pointing to the given element if it is present else return pointer pointing to set.end()
//set.lower_bound(element) - iterator pointing to element greater than or equal to the given element
//set.upper_bound(element) - iterator pointing to element greater than the given element
// | ^
using namespace std;
int main()
{
int n,k,x;
cin>>n>>k;
vi v;
map<int,int>m;
int mayores=0;
for(int i=0;i<n;i++){
cin>>x;
if(x>k){
mayores++;
}
m[x]++;
v.pb(x);
}
vi res;
for(int i=0;i<n;i++){
int c=0;
int num=v[i]-k;
if(v[i]<k){
res.pb(0);
continue;
}
if(v[i]==k){
res.pb(mayores);
continue;
}
for(int l=1;l*l<=num;l++){
if(k==0){
if(num % l ==0){
c+=m[l];
if(l != (num/l)){
c+=m[num/l];
}
}
res.pb(c-1);
}else{
if(num%l==0){
if(v[i]%l!=0){
c+=m[l];
}
if(v[i]%(num/l)!=0 && l!=(num/l)){
c+=m[(num/l)];
}
}
}
}
res.pb(c);
}
for(int i=0;i<n;i++){
cout<<res[i]<<" ";
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
11 ms |
748 KB |
Output isn't correct |
2 |
Incorrect |
10 ms |
620 KB |
Output isn't correct |
3 |
Correct |
458 ms |
2288 KB |
Output is correct |
4 |
Incorrect |
1340 ms |
6312 KB |
Output isn't correct |
5 |
Incorrect |
1136 ms |
270160 KB |
Output isn't correct |
6 |
Runtime error |
1659 ms |
524292 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
7 |
Incorrect |
994 ms |
13284 KB |
Output isn't correct |
8 |
Incorrect |
977 ms |
13284 KB |
Output isn't correct |
9 |
Execution timed out |
2085 ms |
13700 KB |
Time limit exceeded |
10 |
Execution timed out |
2085 ms |
13592 KB |
Time limit exceeded |