54222023-05-17 10:12:16TortelliniJrTáblajátékcpp17Hibás válasz 28/503ms3624 KiB

#include <iostream>
#include <vector>
#include <array>
#include <cmath>
#include <string>

using namespace std;

int main()
{
    int n, s, o, j;
	s = 1;
	o = 1;
    cin >> n;
	for (int i = 0; i < n; i++)
	{
		cin >> j;
		switch (j)
		{
		case 0:
			s++;
			o *= 2;
			o--;
			break;
		case 1:
			s++, o *= 2;
			break;
		case 2:
			s--;
			o = ceil((double)o / 2);
		case 3:
			o--;
		case 4:
			o++;
		}
	}
	o--;
	s--;
	string t;
	if (o == 0)
	{
		t = "0";
	}
	while (o != 0)
	{
		t = to_string(o % 2) + t;
		o /= 2;
	}
	cout << s << endl;
	cout << t << endl;
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
base28/50
1Elfogadva0/03ms1812 KiB
2Hibás válasz0/03ms2016 KiB
3Elfogadva3/33ms2228 KiB
4Elfogadva3/33ms2480 KiB
5Elfogadva3/33ms2692 KiB
6Részben helyes1/33ms2868 KiB
7Elfogadva3/33ms2988 KiB
8Részben helyes1/33ms2984 KiB
9Részben helyes1/33ms2956 KiB
10Részben helyes1/33ms3068 KiB
11Elfogadva3/33ms3084 KiB
12Részben helyes1/33ms3200 KiB
13Részben helyes1/43ms3164 KiB
14Részben helyes1/43ms3412 KiB
15Részben helyes1/43ms3500 KiB
16Részben helyes1/43ms3624 KiB
17Elfogadva4/43ms3624 KiB