/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Accepted 7ms 532.0 KiB
#3 Accepted 8ms 320.0 KiB
#4 Accepted 7ms 564.0 KiB
#5 Wrong Answer 8ms 544.0 KiB
#6 Accepted 9ms 564.0 KiB
#7 Wrong Answer 9ms 532.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;

void solve()
{
    ll n, k;
    cin >> n >> k;
    map<ll, ll> mp;
    for (int i = 0; i < n; i++)
    {
        ll x; cin >> x;
        mp[x]++;
    }
    set<pair<ll, ll>> st; // {cnt, val}
    for(int i = 1; i <= k; i++)
    {
        ll c = 0;
        for(int j = i; j <= k; j += i)
        {
            if(mp.find(i) != mp.end()) c += mp[i];
        }
        // cout << i << " -> " << c << endl;
        st.insert({c, i});
    }
    cout << st.begin()->S << 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
P1039 Prince Roy, the undisputed ruler of the world
Language
C++20 (G++ 13.2.0)
Submit At
2024-05-06 19:06:24
Judged At
2024-11-11 03:31:38
Judged By
Score
35
Total Time
9ms
Peak Memory
564.0 KiB