Wrong Answer
Code
#include <bits/stdc++.h>
#define int long long
using namespace std;
namespace solve {
namespace test_case {
void main() {
int n, k; cin >> n >> k;
int l(0), h = (k / n), Y(0), X(0);
while (l <= h) {
int m((l + h) / 2);
int tot = m * n;
if (tot <= k) {
Y = m;
X = k - tot;
l = m + 1;
} else {
h = m - 1;
}
}
cout << X * Y << '\n';
}
}
void main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int t;
cin >> t;
while (t--) {
test_case::main();
}
}
}
signed main() { solve::main(); }
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:01:04
- Judged At
- 2024-10-03 13:09:28
- Judged By
- Score
- 1
- Total Time
- 32ms
- Peak Memory
- 1.461 MiB