Accepted
Code
#include <bits/stdc++.h>
#define int long long
using namespace std;
signed main() {
ios::sync_with_stdio(false), cin.tie(nullptr);
int t; cin >> t;
while (t--) {
int a, b, ans (0); cin >> a >> b;
while (a <= b / 2) {
if (b & 1) {
b--; ans++;
}
else {
b /= 2; ans++;
}
}
cout << ans + b - a << '\n';
}
}
Information
- Submit By
- Type
- Submission
- Problem
- P1044 Add or multiple
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-03-28 11:53:27
- Judged At
- 2024-11-11 03:36:32
- Judged By
- Score
- 100
- Total Time
- 29ms
- Peak Memory
- 820.0 KiB