Wrong Answer
Code
#include <iostream>
using namespace std;
int minOp(int A, int B) {
int op = 0;
while (B > A) {
if (B % 2 == 0 && (B/2>A)){
B /= 2;
op++;}
else{
B -= 1;
op++;
}
}
if (A == B)
return op;
}
int main() {
int T;
cin >> T;
while (T--) {
int A, B;
cin >> A >> B;
cout << minOp(A, B) << endl;
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1044 Add or multiple
- Contest
- TLE_Headquarters - round #1
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-03-27 17:41:33
- Judged At
- 2024-11-11 03:37:31
- Judged By
- Score
- 0
- Total Time
- 2ms
- Peak Memory
- 332.0 KiB