Wrong Answer
Code
/*
* @author:- SYEDA SADIATUL JANNAT TUSHI
* date & time :2024-09-05 20:55:29
* BANGLADESH , SYLHET.
*/
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
#define rep(i, a, b) for(int i = (a); i < (b); i++)
#define ll long long
#define vi vector<ll>
#define fast ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
void solve() {
ll a,b;
cin>>a>>b;
ll y=b/a;
ll x=b-(y*a);
cout<<x*y<<endl;
}
int main() {
fast;
ll T;
cin >> T;
while (T--) {
solve();
}
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:14:59
- Judged At
- 2024-10-03 13:04:54
- Judged By
- Score
- 1
- Total Time
- 26ms
- Peak Memory
- 1.438 MiB