Wrong Answer
Code
#include<bits/stdc++.h>
using namespace std;
int main() {
int t;
cin>>t;
while (t--){
int a,b;
cin>>a>>b;
int count=0;
while (a!=b){
if (a*2<=b){
a=a*2;
count++;
}
else{
a++;
count++;
}
}
cout<<count<<endl;
}
}
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 16:38:33
- Judged At
- 2024-11-11 03:38:20
- Judged By
- Score
- 20
- Total Time
- 56ms
- Peak Memory
- 488.0 KiB