Wrong Answer
Code
#include <iostream>
#include <cmath>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int T;
cin >> T;
while (T--) {
long long N, K;
cin >> N >> K;
long long baseValue = K / N;
long long Y = 1;
while (Y <= baseValue) {
Y <<= 1;
}
Y >>= 1;
long long X = K - (baseValue * N);
long long result = X * Y;
cout << result << endl;
}
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 16:10:50
- Judged At
- 2024-10-03 13:08:42
- Judged By
- Score
- 1
- Total Time
- 201ms
- Peak Memory
- 1.492 MiB