Wrong Answer
Code
#include<bits/stdc++.h>
#define ll long long
using namespace std;
int main(){
int t;
cin >> t;
while (t--){
//vector<ll> a(3);
ll a, b, ans = 0;
cin >> a >> b;
if (b & 1) ans++;
while (a <= b / 2){
b /= 2;
ans++;
if (a == b) break;
if (b & 1){
ans++;
b--;
}
}
ans += (b - a);
cout << ans << 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:42:46
- Judged At
- 2024-11-11 03:38:14
- Judged By
- Score
- 80
- Total Time
- 240ms
- Peak Memory
- 800.0 KiB