34152023-02-27 13:38:01BenedekTáblajátékcsharpPartially correct 38/5037ms25476 KiB
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace táblajáék
{
    class Program
    {
        static void Main(string[] args)
        {
            int lsz = int.Parse(Console.ReadLine());
            int[] lf = Console.ReadLine().Split().Select(int.Parse).ToArray();
            int hossz = 0;
            ulong szel = 0;

            foreach (var item in lf)
            {
                if (item == 0)
                {
                    hossz++;
                    szel = szel * 2;
                }
                if (item == 1)
                {
                    hossz++;
                    szel = szel * 2 + 1;
                }
                if (item == 2)
                {
                    hossz--;
                    szel = szel / 2;
                }
                if (item == 3)
                {
                    szel--;
                }
                if (item == 4)
                {
                    szel++;
                }
            }
            Console.WriteLine(hossz);
            if (szel == 0)
            {
                Console.WriteLine(0);
            }
            else
            {
                string bin = "";
                while (szel != 0)
                {
                    bin = szel % 2 + bin;
                    szel = szel / 2;
                }
                Console.WriteLine(bin);
            }
            Console.ReadKey();

        }

    }
}
SubtaskSumTestVerdictTimeMemory
base38/50
1Accepted0/030ms22088 KiB
2Accepted0/032ms22636 KiB
3Accepted3/332ms22840 KiB
4Accepted3/330ms22832 KiB
5Accepted3/330ms23184 KiB
6Partially correct1/330ms23576 KiB
7Accepted3/330ms23572 KiB
8Accepted3/332ms24384 KiB
9Accepted3/330ms24364 KiB
10Partially correct1/337ms25380 KiB
11Accepted3/332ms24896 KiB
12Partially correct1/335ms25476 KiB
13Accepted4/429ms25140 KiB
14Partially correct1/437ms25368 KiB
15Accepted4/430ms24980 KiB
16Partially correct1/435ms25312 KiB
17Accepted4/432ms24740 KiB