Wrong Answer
Code
#include <iostream>
using namespace std;
int main() {
int t;
cin >> t;
while (t--) {
int a, b;
cin >> a >> b;
int diff = b - a;
// Calculate the number of operations needed
int requiredMul = 0;
int requiredAdd = 0;
while (b >= a*2) {
a=a*2;
requiredMul++;
diff=b-a;
}
requiredAdd=diff; // Add remaining difference to requiredAdd
cout << requiredMul + requiredAdd << endl;
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1044 Add or multiple
- Contest
- TLE_Headquarters - round #1
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-03-27 17:41:18
- Judged At
- 2024-11-11 03:37:31
- Judged By
- Score
- 20
- Total Time
- 2ms
- Peak Memory
- 324.0 KiB