Header Ad

HackerEarth Hexadecimal numbers problem solution

In this HackerEarth Hexadecimal numbers problem solution, You are given a range [L, R]. You are required to find the number of integers X in the range such that GCD(X, F(X)) > 1 where F(X) is equal to the sum of digits of X in its hexadecimal (or base 16) representation.

For example, F(27) = 1 + B = 1 + 11 = 12 (27 in hexadecimal is written as 1B). You are aksed T such questions.


HackerEarth Hexadecimal numbers problem solution


HackerEarth Hexadecimal numbers problem solution.

#include <bits/stdc++.h>
#define ll long long
#define ld long double
#define mp make_pair
#define pb push_back
#define in insert
#define vll vector<ll>
#define endl "\n"
#define pll pair<ll,ll>
#define all(x) (x).begin() , (x).end()
#define f first
#define s second
#define pr(x) cout<<x<<endl;
#define pr2(x,y) cout<<x<<" "<<y<<endl;
#define pr3(x,y,z) cout<<x<<" "<<y<<endl;
#define prv(v) for(auto x:v) cout<<x<<" ";
#define ffs fflush(stdout);
#define int ll
#define sz(x) (ll)x.size()
using namespace std;

const ll N =(1e5+5);
const ll MOD = 1e9+7;
const ll INF = LLONG_MAX;
const ll LOG = 29;
#define PI 3.141592653589793238


long long binpow(long long a, long long b) {
a%=MOD;
long long res = 1;
while (b > 0) {
if (b & 1)
res = (res * a);
a = (a * a);


b >>= 1;
}
res%=MOD;
return res;
}
ll sum(ll x){
ll r = 0;
while(x ){
r += (x%16);
x /= 16;
}
return r;
}
void solve(){
ll l,r;
cin>>l>>r;
ll ans =0;
for(int i=l;i<=r;i++){
ll g = sum(i);
if(__gcd(i,g) > 1){
ans++;
}
}

cout<<ans<<endl;
}


signed main(){
ios_base::sync_with_stdio(0);
cin.tie(NULL);



ll t=1;
cin>>t;
while(t--){
solve();
}

}



Post a Comment

0 Comments