Wrong Answer
Code
#include <bits/stdc++.h>
#define int long long
using namespace std;
signed main() {
ios::sync_with_stdio(false), cin.tie(nullptr);
int t (1); cin >> t;
while (t--) {
int a, b, ans (0); cin >> a >> b;
while (a < b) {
a *= 2;
ans++;
}
if (a == b)
cout << ans << '\n';
else {
a /= 2;
cout << ans - 1 + b - a << '\n';
}
}
}
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:09:33
- Judged At
- 2024-11-11 03:37:42
- Judged By
- Score
- 20
- Total Time
- 2ms
- Peak Memory
- 564.0 KiB