21192022-12-20 12:35:301478Autókódoláscpp11Részben helyes 48/503ms4252 KiB
#include <bits/stdc++.h>

using namespace std;


int main()
{
    //ifstream cin("be.txt");
    long long n;
    cin>>n;

    long long tempN = n;
    long long multTwo = 1;

    ///kisebb
    long long ans1 = 0;
    while(tempN > 0){
        ans1 += multTwo * (tempN%2);
        if(tempN%2 == 0 && tempN/2 > 0 && (tempN/2)%2 == 1){
        ///aktualis bit
           ans1 += multTwo;
        ///maradek
           tempN/=4;
           ans1 += tempN*4*multTwo;
           break;
        }
        multTwo *= 2;
        tempN /= 2;
    }

    if(ans1 == 1 || ans1 == n) cout<<-1<<'\n';
    else cout<<ans1<<'\n';

    ///nagyobb
    tempN = n;
    multTwo = 1;
    int numberOfZerosAtEnd = 0;
    while(tempN > 0 && tempN%2 == 0){
        numberOfZerosAtEnd++;
        multTwo *= 2;
        tempN /= 2;
    }
    //cout<<numberOfZerosAtEnd<<'\n';
    long long ans2 = 0;
    while(tempN > 0){
        if(tempN/2 == 0 || tempN%2 == 1 && (tempN/2)%2 == 0){
        ///aktualis bit
            while(numberOfZerosAtEnd){
                ans2/=2;
                numberOfZerosAtEnd--;
            }

            ans2 += multTwo*2;

        ///maradek
           tempN/=4;
           ans2 += tempN*4*multTwo;
           break;
        }
        else{
            ans2 += multTwo * (tempN%2);
        }

        multTwo *= 2;
        tempN /= 2;
    }
    cout<<ans2<<'\n';





    return 0;
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
base48/50
1Elfogadva0/03ms1880 KiB
2Elfogadva0/02ms2068 KiB
3Elfogadva2/22ms2144 KiB
4Elfogadva2/22ms2276 KiB
5Részben helyes1/22ms2488 KiB
6Részben helyes1/22ms2704 KiB
7Elfogadva2/22ms2760 KiB
8Elfogadva4/42ms2968 KiB
9Elfogadva4/42ms3164 KiB
10Elfogadva4/42ms3296 KiB
11Elfogadva4/42ms3508 KiB
12Elfogadva4/42ms3620 KiB
13Elfogadva4/42ms3828 KiB
14Elfogadva4/42ms4020 KiB
15Elfogadva4/42ms4252 KiB
16Elfogadva4/42ms4108 KiB
17Elfogadva4/42ms4240 KiB