Wrong Answer
Code
#include <iostream>
#include <algorithm>
using ll = long long;
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int T;
cin >> T;
while (T--) {
ll N, K;
cin >> N >> K;
if(K<N) cout<<0<<endl;
else{
ll v = K / N;
ll rem = K - N * v;
ll ans = rem * v;
cout << ans << endl;
}
}
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:10:22
- Judged At
- 2024-10-03 13:05:16
- Judged By
- Score
- 1
- Total Time
- 195ms
- Peak Memory
- 1.449 MiB