34772023-02-28 12:11:17DoraAutókódoláscsharpIdőlimit túllépés 38/50277ms24400 KiB
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace autokodolas_gyorsabb
{
    internal class Program
    {
        static void Main(string[] args)
        {
            long n = long.Parse(Console.ReadLine());

            // Count the number of 1 bits in the binary representation of n
            int oneBits = CountOneBits(n);

            // Find the previous code with the same number of 1 bits
            long prevCode = n - 1;
            while (prevCode >= 1 && CountOneBits(prevCode) != oneBits)
            {
                prevCode--;
            }

            // Find the next code with the same number of 1 bits
            long nextCode = n + 1;
            while (CountOneBits(nextCode) != oneBits)
            {
                nextCode++;
            }

            Console.WriteLine(prevCode >= 1 ? prevCode.ToString() : "-1");
            Console.WriteLine(nextCode.ToString());
            Console.ReadKey();
        }

        static int CountOneBits(long n)
        {
            int count = 0;
            while (n > 0)
            {
                count += (int)(n & 1);
                n >>= 1;
            }
            return count;
        }
    }
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
base38/50
1Elfogadva0/027ms20604 KiB
2Időlimit túllépés0/0261ms4468 KiB
3Elfogadva2/228ms21508 KiB
4Elfogadva2/227ms21448 KiB
5Elfogadva2/227ms21856 KiB
6Elfogadva2/227ms21976 KiB
7Elfogadva2/227ms22120 KiB
8Elfogadva4/427ms22052 KiB
9Elfogadva4/426ms22444 KiB
10Elfogadva4/426ms22896 KiB
11Elfogadva4/426ms22788 KiB
12Elfogadva4/427ms23048 KiB
13Időlimit túllépés0/4275ms6840 KiB
14Elfogadva4/426ms23716 KiB
15Elfogadva4/441ms24400 KiB
16Időlimit túllépés0/4232ms7384 KiB
17Időlimit túllépés0/4277ms7632 KiB