/ SeriousOJ /

Record Detail

Memory Exceeded


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Wrong Answer 4ms 708.0 KiB
#3 Time Exceeded ≥1106ms ≥171.113 MiB
#4 Memory Exceeded ≥819ms ≥256.016 MiB
#5 Time Exceeded ≥1103ms ≥189.895 MiB
#6 Memory Exceeded ≥721ms ≥256.016 MiB
#7 Time Exceeded ≥1106ms ≥98.129 MiB
#8 Time Exceeded ≥1103ms ≥99.293 MiB
#9 Time Exceeded ≥1108ms ≥193.125 MiB
#10 Memory Exceeded ≥525ms ≥256.016 MiB
#11 Memory Exceeded ≥510ms ≥256.016 MiB

Code

#include <bits/stdc++.h>
#define int long long
#define endll '\n';
#define pb push_back
#define all(v) v.begin(), v.end()
using namespace std;

const int mod = 1e9 + 7, N = 1e6;
unordered_map<int, int> vis;

void solve()
{

   vis.clear();
   int n, k;
   cin >> n >> k;
   int ans = 0;
   if (n <= k)
   {
      ans = k - n;
   }
   for (int i = 2; i <= 1e9; i++)
   {
      if (i * n > k)
         break;

      if ((k - (i * n)) * i < ans)
         break;

      if (vis[i] == 0)
      {

         for (int j = i; j <= 1e9; j += i)
         {
            vis[j] = 1;
            int x = j * n;
            if (x <= k)
            {
               ans = max(ans, (j * (k - x)));
            }
            else
            {
               break;
            }
         }
      }
   }

   cout << ans << endll;
}

int32_t main()
{
   ios::sync_with_stdio(false);
   cin.tie(0);
   int t = 1;
   cin >> t;
   while (t--)
   {
      solve();
   }
   return 0;
}

Information

Submit By
Type
Submission
Problem
P1092 Bitwise AND
Language
C++20 (G++ 13.2.0)
Submit At
2024-09-08 15:12:15
Judged At
2024-09-08 15:12:15
Judged By
Score
1
Total Time
≥1108ms
Peak Memory
≥256.016 MiB