34212023-02-27 13:44:03tothgergelyTáblajátékcsharpRészben helyes 38/5037ms25696 KiB
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp2
{
    class Program
    {
        static void Main(string[] args)
        {
            int k = int.Parse(Console.ReadLine());
            int[] l = Console.ReadLine().Split().Select(int.Parse).ToArray();
            ulong sor = 0;
            ulong hely = 0;
            foreach (var i in l)
            {
                if (i == 0)
                {
                    sor++;
                    hely = hely * 2;
                }
                if (i == 1)
                {
                    sor++;
                    hely = hely * 2 + 1;
                }
                if (i == 2)
                {
                    sor--;
                    hely = hely / 2;
                }
                if (i == 3)
                {
                    hely--;
                }
                if (i == 4)
                {
                    hely++;
                }


            }
            Console.WriteLine(sor);
            if (hely == 0)
            {
                Console.WriteLine("0");
            }
            else
            {
                string bin = "";
                while (hely != 0)
                {
                    bin = hely % 2 + bin;
                    hely = hely / 2;
                    
                }
                Console.WriteLine(bin);
            }

            Console.ReadKey();
        }
    }
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
base38/50
1Elfogadva0/032ms22116 KiB
2Elfogadva0/032ms22652 KiB
3Elfogadva3/332ms22956 KiB
4Elfogadva3/332ms23460 KiB
5Elfogadva3/332ms23508 KiB
6Részben helyes1/330ms23724 KiB
7Elfogadva3/332ms23612 KiB
8Elfogadva3/332ms23892 KiB
9Elfogadva3/330ms23796 KiB
10Részben helyes1/337ms24432 KiB
11Elfogadva3/330ms24164 KiB
12Részben helyes1/337ms24964 KiB
13Elfogadva4/432ms24804 KiB
14Részben helyes1/435ms25688 KiB
15Elfogadva4/432ms24968 KiB
16Részben helyes1/437ms25696 KiB
17Elfogadva4/432ms25240 KiB