Submission #345653

# Submission time Handle Problem Language Result Execution time Memory
345653 2021-01-07T18:51:12 Z Pichon5 Spiderman (COCI20_spiderman) C++17
49 / 70
2000 ms 21860 KB
#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()
{
    fast
    ll n,k,x;
    cin>>n>>k;
    vll v;
    map<ll,ll>m;
    ll mayores=0;
    for(int i=0;i<n;i++){
        cin>>x;
        if(x>k){
            mayores++;
            m[x]++;
        }
        v.pb(x);
    }
    vll res;
    for(ll i=0;i<n;i++){
        ll c=0;
        ll num=v[i]-k;
        if(v[i]==k){
            res.pb(mayores);
            continue;
        }
        if(v[i]<k){
            res.pb(0);
            continue;
        }
        for(ll l=1;l*l<=num;l++){
            if(num%l==0){
                c+=m[l];
                if(l*l!=num){
                    c+=m[num/l];
                }
            }
        }
        if(k==0){
            c--;
        }
        res.pb(c);
    }
    for(ll i=0;i<n;i++){
        cout<<res[i]<<" ";
    }
    
    

    return 0;
}
# Verdict Execution time Memory Grader output
1 Correct 11 ms 1004 KB Output is correct
2 Correct 10 ms 748 KB Output is correct
3 Correct 437 ms 3736 KB Output is correct
4 Correct 1252 ms 10632 KB Output is correct
5 Correct 840 ms 11980 KB Output is correct
6 Execution timed out 2065 ms 15948 KB Time limit exceeded
7 Correct 951 ms 17868 KB Output is correct
8 Correct 1008 ms 17888 KB Output is correct
9 Execution timed out 2093 ms 21860 KB Time limit exceeded
10 Execution timed out 2074 ms 19712 KB Time limit exceeded