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;
while (a + a <= b){
a += a;
ans++;
}
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:27:29
- Judged At
- 2024-11-11 03:38:45
- Judged By
- Score
- 20
- Total Time
- 1ms
- Peak Memory
- 540.0 KiB