54252023-05-17 11:48:00TortelliniJrTáblajátékcpp17Részben helyes 36/503ms3508 KiB

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

using namespace std;

int main()
{
    int n, s, o, j;
	o = 0;
	s = 0;
    cin >> n;
	for (int i = 0; i < n; i++)
	{
		cin >> j;
		switch (j)
		{
		case 0:
			s++;
			o *= 2;
			break;
		case 1:
			s++, o *= 2, o++;
			break;
		case 2:
			s--;
			o = o / 2;
			break;
		case 3:
			o--;
			break;
		case 4:
			o++;
			break;
		}
	}
	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
base36/50
1Elfogadva0/03ms1816 KiB
2Elfogadva0/03ms2008 KiB
3Elfogadva3/33ms2212 KiB
4Elfogadva3/33ms2428 KiB
5Elfogadva3/32ms2512 KiB
6Részben helyes1/33ms2628 KiB
7Elfogadva3/33ms2640 KiB
8Részben helyes1/33ms2756 KiB
9Elfogadva3/33ms2720 KiB
10Részben helyes1/33ms2724 KiB
11Elfogadva3/33ms2728 KiB
12Részben helyes1/33ms2852 KiB
13Elfogadva4/43ms3068 KiB
14Részben helyes1/43ms3180 KiB
15Elfogadva4/43ms3272 KiB
16Részben helyes1/43ms3360 KiB
17Elfogadva4/43ms3508 KiB