34142023-02-27 13:36:51BenedekTáblajátékcsharpPartially correct 36/5035ms26332 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;
            int 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
base36/50
1Accepted0/030ms22084 KiB
2Accepted0/032ms22444 KiB
3Accepted3/330ms22784 KiB
4Accepted3/329ms22912 KiB
5Accepted3/330ms23264 KiB
6Partially correct1/329ms23804 KiB
7Accepted3/332ms24016 KiB
8Partially correct1/332ms24580 KiB
9Accepted3/332ms24480 KiB
10Partially correct1/335ms25300 KiB
11Accepted3/332ms24968 KiB
12Partially correct1/335ms25872 KiB
13Accepted4/432ms25556 KiB
14Partially correct1/435ms26040 KiB
15Accepted4/430ms25324 KiB
16Partially correct1/435ms26332 KiB
17Accepted4/430ms25948 KiB