/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Accepted 1ms 356.0 KiB
#3 Accepted 1ms 416.0 KiB
#4 Accepted 136ms 764.0 KiB
#5 Accepted 136ms 832.0 KiB

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 (a != b && (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:44:58
Judged At
2024-03-27 16:44:58
Judged By
Score
100
Total Time
136ms
Peak Memory
832.0 KiB