/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 328.0 KiB
#2 Wrong Answer 2ms 332.0 KiB
#3 Wrong Answer 2ms 584.0 KiB
#4 Wrong Answer 2ms 332.0 KiB
#5 Wrong Answer 3ms 488.0 KiB
#6 Wrong Answer 8ms 636.0 KiB
#7 Wrong Answer 64ms 1.852 MiB
#8 Wrong Answer 61ms 1.617 MiB
#9 Wrong Answer 62ms 1.84 MiB
#10 Wrong Answer 66ms 2.223 MiB
#11 Wrong Answer 60ms 2.121 MiB

Code

#include <bits/stdc++.h>
#define endl '\n'
#define F first
#define S second
using namespace std;
#define ll long long
#define pb push_back
#define mod 1000000007
#define int long long
#define all(x)      x.begin(),x.end()
#define allr(x)     x.rbegin(),x.rend()
#define CheckBit(x,k)   (x & (1LL << k))
#define SetBit(x,k)     (x |= (1LL << k))
#define ClearBit(x,k)   (x &= ~(1LL << k))
#define LSB(mask)       __builtin_ctzll(mask)
#define MSB(mask)       63-__builtin_clzll(mask) 
#define print(x)    cout << #x << " : " << x << endl
#define error1(x)   cerr << #x << " = " << (x) <<endl
#define coutall(v)  for(auto &it: v) cout<<it<<' '; cout<<endl
#define Abid_52     ios::sync_with_stdio(false);cin.tie(0),cin.tie(0)
#define error2(a,b) cerr<<"( "<<#a<<" , "<<#b<<" ) = ( "<<(a)<<" , "<<(b)<<" )\n"
#define UNIQUE(x)   sort(all(x)), x.erase(unique(all(x)), x.end()), x.shrink_to_fit()
template <typename T, typename U> T ceil(T x, U y) {return (x > 0 ? (x + y - 1) / y : x / y);}
template <typename T, typename U> T floor(T x, U y) {return (x > 0 ? x / y : (x - y + 1) / y);}

const int N = 2e5 + 10;

void solve()
{
    int n, m;
    cin >> n >> m;
    int l = 0, r = 1e10, ans = 0;
    int minDiff = LLONG_MAX;
    int bestAns = 0;

    while (l <= r) {
        int mid = (l + r) / 2;
        int lagbe = mid * n;

        if (lagbe > m) {
            r = mid - 1;
        }
        else {
            int baki = m - lagbe;
            int tot = lagbe / n;

            int diff = abs(lagbe - baki);

            if (diff < minDiff) {
                minDiff = diff;
                bestAns = baki; 
            }
            if (baki <= tot) {
                l = mid + 1;
                ans = baki;
            }
            else {
                r = mid - 1;
            }
        }
    }
    ll fans = bestAns * ((m - bestAns) / n);
    cout << fans << endl;
}

int32_t main()
{
    Abid_52;
    int t = 1;
    cin >> t;
    for (int tc = 1; tc <= t; ++tc)
    {
        // cout << "Case " << tc << ": ";
        solve();
    }
}

Information

Submit By
Type
Submission
Problem
P1092 Bitwise AND
Contest
Brain Booster #5
Language
C++20 (G++ 13.2.0)
Submit At
2024-09-05 16:31:51
Judged At
2024-10-03 13:07:14
Judged By
Score
1
Total Time
66ms
Peak Memory
2.223 MiB