/ SeriousOJ /

Record Detail

Time Exceeded


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 540.0 KiB
#2 Accepted 8ms 956.0 KiB
#3 Accepted 10ms 772.0 KiB
#4 Accepted 8ms 960.0 KiB
#5 Accepted 15ms 952.0 KiB
#6 Accepted 11ms 1.051 MiB
#7 Accepted 12ms 780.0 KiB
#8 Accepted 16ms 724.0 KiB
#9 Accepted 22ms 1000.0 KiB
#10 Accepted 38ms 1.633 MiB
#11 Accepted 66ms 2.27 MiB
#12 Accepted 85ms 2.348 MiB
#13 Accepted 54ms 2.227 MiB
#14 Accepted 77ms 2.273 MiB
#15 Accepted 95ms 2.559 MiB
#16 Accepted 90ms 2.43 MiB
#17 Accepted 518ms 2.285 MiB
#18 Time Exceeded ≥4094ms ≥2.059 MiB

Code

#include<bits/stdc++.h>
using namespace std;
#define fast ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define dbg(a,b,c,d) cerr<<a<<"  "<<b<<"  "<<c<<"  "<<d<<endl;
#define kill(a) {cout<<a<<endl;continue;}
#define KILL(a) {cout<<a<<endl;return 0;}
#define debug cerr<<"Error Found"<<endl;
#define mem(a,b) memset(a,b,sizeof(a))
#define lcm(a, b) (a/__gcd(a,b))*b
#define w(t) cin>>t;while(t--)
#define pi  2 * acos(0.0)
#define endl "\n"
int t, cs = 0;
const int mxn = 1e6 + 3, mod = 1e9 + 7;
int freq[mxn];
int32_t main()
{
   fast;
    w(t)
    {
        int n, x;
        cin >> n >> x;
        map<int,int>freq;
        int mx = 0;
        int ar[n];
        for(int i = 0, a; i < n; i++)cin >> ar[i], freq[ar[i]]++, mx = max(mx, ar[i]);
        int last = min(x, mx + 1);
        int64_t mn = 1e18;
        int K;
        for(int i = 1; i <= last; i++)
        {
            int64_t cnt = 0;
            for(int j = i; j <= mx; j += i)
            {
                cnt += 1LL * j * freq[j];
            }
            if(cnt < mn)mn = cnt, K = i;
        }
        for(int i = 0; i < n; i++)freq[ar[i]] = 0;
        cout << K << endl;
    }
}

Information

Submit By
Type
Submission
Problem
P1039 Prince Roy, the undisputed ruler of the world
Language
C++17 (G++ 13.2.0)
Submit At
2024-11-07 06:33:08
Judged At
2024-11-07 06:33:08
Judged By
Score
95
Total Time
≥4094ms
Peak Memory
≥2.559 MiB