/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Wrong Answer 1ms 532.0 KiB
#2 Wrong Answer 1ms 532.0 KiB

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:51:00
Judged At
2024-11-11 03:36:33
Judged By
Score
0
Total Time
1ms
Peak Memory
532.0 KiB