#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,h;
cin>>n>>k;
vi v;
map<int,int>m;
for(int i=0;i<n;i++){
cin>>h;
m[h]++;
v.pb(h);
}
vi res;
for(int i=0;i<n;i++){
int aux=0;
h=v[i];
for(int l=1;l<=sqrt(h);l++){
if(h%l==0){
aux+=m[l];
if(h/l != l){
aux+=m[h/l];
}
}
}
aux--;
res.pb(aux);
}
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 |
492 KB |
Output isn't correct |
3 |
Incorrect |
441 ms |
2008 KB |
Output isn't correct |
4 |
Incorrect |
1314 ms |
6544 KB |
Output isn't correct |
5 |
Correct |
863 ms |
8884 KB |
Output is correct |
6 |
Execution timed out |
2043 ms |
10212 KB |
Time limit exceeded |
7 |
Incorrect |
987 ms |
11692 KB |
Output isn't correct |
8 |
Incorrect |
904 ms |
11792 KB |
Output isn't correct |
9 |
Execution timed out |
2040 ms |
10972 KB |
Time limit exceeded |
10 |
Execution timed out |
2079 ms |
11196 KB |
Time limit exceeded |