General
 
 
# Author Problem Lang Verdict Time Memory Sent Judged  
144585575 Practice:
Igorfardoc
1632C - 14 C++20 (GCC 11-64) Accepted 46 ms 0 KB 2022-01-30 20:19:50 2022-01-30 20:19:50
→ Source
#include<bits/stdc++.h>
using namespace std;


int main() {
    int t;
    cin >> t;
    while(t--) {
        int a, b;
        cin >> a >> b;
        int ans = b - a;
        for(int a1 = a; a1 < b; a1++) {
            int b1 = 0;
            int binv = ((1 << 21) - 1) ^ b;
            int fir = binv & a1;
            if(fir == 0) {
                b1 = b;
            } else {
                int bt = 31 - __builtin_clz(fir);
                int bnew = (b >> (bt + 1)) << (bt + 1);
                b1 = bnew;
                b1 ^= (1 << bt);
            }
            ans = min(ans, a1 - a - b + (a1 | b1) + 1);
        }
        cout << ans << '\n';
    }
}
?
Time: ? ms, memory: ? KB
Verdict: ?
Input
?
Participant's output
?
Jury's answer
?
Checker comment
?
Diagnostics
?
Click to see test details