#include<bits/stdc++.h>
using namespace std;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
long long a,b,c,d,e,p,h;
int mp[1000005];
memset(mp,0,sizeof(mp));
vector <long long> arr;
cin>>a>>c;
p=a;
h=0;
while(a--){
cin>>b;
mp[b]++;
arr.push_back(b);
if(b > c){
h++;
}
}
for(long long i=0;p>i;i++){
if(arr[i] <= c){
if(arr[i] == c){
e=h;
}
else{
e=0;
}
}
else{
e=0;
d=arr[i];
d-=c;
for(long long j=1; d >= (j*j);j++){
if(d % j == 0 ){
if(arr[i] % j == c){
e+=mp[j];
}
if(arr[i] % (d / j) == c){
e+=mp[d / j];
}
if(j*j == d){
e-=mp[j];
}
}
}
if(c == 0){
e-=1;
}
}
cout<<e<<" ";
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
7 ms |
4188 KB |
Output isn't correct |
2 |
Incorrect |
8 ms |
4244 KB |
Output isn't correct |
3 |
Incorrect |
270 ms |
5532 KB |
Output isn't correct |
4 |
Incorrect |
799 ms |
8912 KB |
Output isn't correct |
5 |
Correct |
311 ms |
5740 KB |
Output is correct |
6 |
Correct |
907 ms |
10196 KB |
Output is correct |
7 |
Incorrect |
354 ms |
5340 KB |
Output isn't correct |
8 |
Incorrect |
356 ms |
5340 KB |
Output isn't correct |
9 |
Incorrect |
1035 ms |
9940 KB |
Output isn't correct |
10 |
Incorrect |
1050 ms |
10188 KB |
Output isn't correct |