Wrong Answer
Code
#include <bits/stdc++.h>
using namespace std;
#define int long long int
void solve() {
int n, k;
cin >> n >> k;
// Compute best Y (target value)
int bestTarget = k / (n + 1);
// Compute X = K - N * bestTarget
int X = k - n * bestTarget;
// Final answer is X * bestTarget
int ans = X * bestTarget;
cout << ans << endl;
}
signed main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int test;
cin >> test;
while (test--) {
solve();
}
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 17:19:16
- Judged At
- 2024-10-03 13:04:43
- Judged By
- Score
- 11
- Total Time
- 200ms
- Peak Memory
- 2.148 MiB