/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Wrong Answer 449ms 644.0 KiB

Code

#include<bits/stdc++.h>
typedef long long   ll;
#define endl        '\n'
#define F           first
#define S           second
#define pb          push_back
#define yes         cout<<"YES\n"
#define no          cout<<"NO\n"
#define all(x)      x.begin(),x.end()
#define allr(x)     x.rbegin(),x.rend()
#define error1(x)   cerr<<#x<<" = "<<(x)<<endl
#define error2(a,b) cerr<<"("<<#a<<", "<<#b<<") = ("<<(a)<<", "<<(b)<<")\n";
#define coutall(v)  for(auto &it: v) cout<<it<<" "; cout<<endl;
#define _ASRafi__   ios::sync_with_stdio(false); cin.tie(0);
using namespace std;

const int N = 1e4 + 7;
ll divCnt[N];

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

void solve()
{
    ll n, k;
    cin >> n;
    vector<ll> v(n);
    for (int i = 0; i < n; i++)
    {
        ll x; cin >> x;
        v[i] = x;
    }
    cin >> k;
    memset(divCnt, 0, sizeof divCnt);
    for(auto &i: v)
    {
        for(auto &j: v)
        {
            if(i % j == 0) divCnt[i] += 1;
        }
    }
    sort(all(v), cmp);
    cout << v[k - 1] << endl;
    return;
}
int32_t main()
{
    _ASRafi__;
    int tc = 1;
    cin >> tc;
    for (int t = 1; t <= tc; t++)
    {
        // cout << "Case " << t << ": ";
        solve();
    }
    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 17:05:16
Judged At
2024-10-03 14:10:49
Judged By
Score
0
Total Time
449ms
Peak Memory
644.0 KiB