/ SeriousOJ /

Record Detail

Time Exceeded


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 324.0 KiB
#2 Wrong Answer 1ms 324.0 KiB
#3 Wrong Answer 2ms 576.0 KiB
#4 Wrong Answer 2ms 324.0 KiB
#5 Wrong Answer 3ms 580.0 KiB
#6 Wrong Answer 15ms 600.0 KiB
#7 Wrong Answer 111ms 1.781 MiB
#8 Wrong Answer 39ms 1.562 MiB
#9 Wrong Answer 57ms 1.715 MiB
#10 Time Exceeded ≥1083ms ≥768.0 KiB
#11 Time Exceeded ≥1092ms ≥1.629 MiB

Code

/* SRIJON
        SINGHA
            SAMANTA */
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef long double ld;
#define nl "\n"
#define all(v) v.begin(),v.end()
#define rall(v) v.rbegin(),v.rend()
#define yes cout << "YES" << nl
#define no cout << "NO" << nl
#define fi first
#define sec second
#define pb push_back
#define ppb pop_back
#define pf push_front
#define ppf pop_front
#define FIO                           \
    ios_base::sync_with_stdio(false); \
    cin.tie(NULL);                    \
    cout.tie(NULL);
const int mod = 1e9 + 7;
int32_t main()
{
    FIO

    ll t;	cin >> t;
    ll tt=t;
    while (tt--)
    {
        ll n,k; cin>>n>>k;
        if(n>=k) cout<<"0"<<nl;
        else
        {
            ll mx=0;
            ll a=k/n;
            for(ll i=1;i<=sqrt(a);i++)
            {
                mx=max(mx,(i*(k-(i*n))));          
            }
            cout<<mx<<nl;
        }      
    }
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1092 Bitwise AND
Contest
Brain Booster #5
Language
C++17 (G++ 13.2.0)
Submit At
2024-09-05 16:50:55
Judged At
2024-10-03 13:05:59
Judged By
Score
1
Total Time
≥1092ms
Peak Memory
≥1.781 MiB