142822025-01-10 11:36:47GundischBalazsTáblajátékcpp17Részben helyes 38/501ms556 KiB
#include <iostream>
using namespace std;
void decToBinary(int n)
{
    int binaryNum[32];

    // counter for binary array
    int i = 0;
    while (n > 0) {

        // storing remainder in binary array
        binaryNum[i] = n % 2;
        n = n / 2;
        i++;
    }

    // printing binary array in reverse order
    for (int j = i - 1; j >= 0; j--)
        cout << binaryNum[j];
}
int main()
{
    int k;
    cin >> k;
    long long j = 0, db = 0;
    int x;
    for(int i = 0; i < k; i++){
        cin >> x;
        if(x == 0){
            db++;
            if(j != 0){
                j=j*2;
            }
        }
        else if(x == 1){
             db++;
             j=j*2+1;
        }
        else if(x == 2){
            db--;
            if(j%2==0)
            {
                if(j == 1){
                    j=0;
                }
                j=j/2;

            }
            else{
                j=(j-1)/2;
                }
            }
        else if(x == 3){
            j--;
        }
        else{
            j++;
        }
    }
    cout << db << endl;
    if(j == 0){
        cout << j;
    }
    else{
        decToBinary(j);
    }
    return 0;
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
base38/50
1Elfogadva0/01ms316 KiB
2Elfogadva0/01ms320 KiB
3Elfogadva3/31ms316 KiB
4Elfogadva3/31ms316 KiB
5Elfogadva3/31ms316 KiB
6Részben helyes1/31ms316 KiB
7Elfogadva3/31ms316 KiB
8Elfogadva3/31ms316 KiB
9Elfogadva3/31ms508 KiB
10Részben helyes1/31ms396 KiB
11Elfogadva3/31ms316 KiB
12Részben helyes1/31ms500 KiB
13Elfogadva4/41ms556 KiB
14Részben helyes1/41ms316 KiB
15Elfogadva4/41ms316 KiB
16Részben helyes1/41ms316 KiB
17Elfogadva4/41ms508 KiB