/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 81ms 568.0 KiB

Code

#include<bits/stdc++.h>
using namespace std;
#define ff       first
#define ss       second
#define MX       1000005
#define mod      1000000007
#define ll       long long
#define pb       push_back
#define pll      pair<ll,ll>
#define endl     "\n"
#define bug(a)   cerr<<#a<<" : "<<a<<endl
#define all(x)   (x).begin(),(x).end()
#define allr(x)  (x).rbegin(),(x).rend()
#define Mul(a,b) (a%mod * b%mod)%mod
#define Add(a,b) (a%mod + b%mod)%mod

int divisor[10005];

bool cmp(ll a, ll b) {
    if(divisor[a] == divisor[b])
        return a>b;
    return divisor[a] < divisor[b];
}

int main() {
    ios::sync_with_stdio(0);
    cin.tie(0); cout.tie(0);

    for(int i=1; i<=10000; i++) {
        int cnt =1;
        for(int j = 1; j <= i / 2; j++) {
            if(i%j == 0)
                cnt++;
        }

        divisor[i]=cnt;
    }

    ll t;
    cin>>t;
    while(t--) {
        ll n;
        cin>>n;
        vector<ll>v;
        for(int i=0; i<n; i++) {
            ll x; cin>>x;
            v.pb(x);
        }

        ll k;
        cin>>k;

        sort(all(v), cmp);

        cout<<v[k-1]<<endl;
    }

    return 0;
}

Information

Submit By
Type
Submission
Problem
P1008 Ordering Number
Contest
Beta Round #1
Language
C++17 (G++ 13.2.0)
Submit At
2023-11-29 16:26:16
Judged At
2024-10-03 14:11:05
Judged By
Score
100
Total Time
81ms
Peak Memory
568.0 KiB