/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Wrong Answer 1ms 320.0 KiB
#2 Wrong Answer 1ms 532.0 KiB
#3 Wrong Answer 2ms 320.0 KiB
#4 Wrong Answer 2ms 532.0 KiB
#5 Wrong Answer 2ms 532.0 KiB
#6 Wrong Answer 4ms 580.0 KiB
#7 Wrong Answer 28ms 1.438 MiB
#8 Wrong Answer 27ms 1.184 MiB
#9 Wrong Answer 28ms 1.406 MiB
#10 Wrong Answer 27ms 2.176 MiB
#11 Wrong Answer 28ms 2.113 MiB

Code

#include<bits/stdc++.h>
//#include<ext/pb_ds/assoc_container.hpp>
//#include<ext/pb_ds/tree_policy.hpp>

//using namespace __gnu_pbds;
using namespace std;

typedef long long int ll ;
//typedef __int128 lll;
#define pb push_back
#define pinf   2e18
#define ninf   -2e18
#define PI    acos(-1.0)
#define endl  "\n"
#define F first
#define S second

//template <typename T> using o_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;

ll gcd (ll a,ll b) {
    if(a%b==0)return b;
    return gcd(b,a%b);
}


int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);
    //inout() ;

    ll t,i,j ;
    cin>>t ;
    while(t--) {
        ll n,k;
        cin>>n>>k;
        ll x=k%n;
        n++;
        ll ans=((k-x)/n)*(((k-x)/n)+x);
        ans=max(ans,((k-x)/n)*(((k-x)/n)));
         cout<<ans<<'\n';
         
        









    }
    return 0 ;
}

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 17:44:14
Judged At
2024-10-03 13:02:51
Judged By
Score
0
Total Time
28ms
Peak Memory
2.176 MiB