結果

問題 No.3 ビットすごろく
ユーザー eiken7kyuueiken7kyuu
提出日時 2019-06-06 09:35:56
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 2,840 bytes
コンパイル時間 1,025 ms
コンパイル使用メモリ 114,636 KB
実行使用メモリ 25,144 KB
最終ジャッジ日時 2023-10-24 23:02:30
合計ジャッジ時間 4,101 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
18,756 KB
testcase_01 AC 25 ms
18,756 KB
testcase_02 AC 24 ms
18,732 KB
testcase_03 AC 24 ms
18,900 KB
testcase_04 AC 25 ms
18,760 KB
testcase_05 AC 25 ms
18,968 KB
testcase_06 AC 26 ms
18,904 KB
testcase_07 AC 25 ms
18,784 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 27 ms
18,960 KB
testcase_13 AC 26 ms
18,768 KB
testcase_14 AC 25 ms
19,020 KB
testcase_15 AC 25 ms
19,060 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 25 ms
18,788 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 25 ms
18,756 KB
testcase_22 AC 25 ms
19,020 KB
testcase_23 AC 25 ms
19,060 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 24 ms
18,660 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 25 ms
18,744 KB
testcase_32 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using static System.Math;

namespace ConsoleApp1
{
    class Program
    {
        static void Main(string[] args)
        {
            A();
        }

        static void A()
        {
            var N = ReadInt();
            var masu = new int[N + 1];

            Func<int, int> dfs = null;
            dfs = s =>
            {
                if (masu[s] == 1) return -1;
                masu[s] = 1;

                if (N == s) return masu.Count(x => x == 1);
                var idouryou = Convert.ToString(s, 2).Count(x => x == '1');
                if (s + idouryou > N)
                    return dfs(s - idouryou);
                else
                    return dfs(s + idouryou);
            };

            Println(dfs(1));
        }

        static IEnumerable<int> Range(int start, int stop)
        {
            if (start < 0 || stop < 0 || start > stop || (start <= 0 && stop <= 0))
                return new List<int>();

            return Enumerable.Range(start, stop - start);
        }

        static bool IsDigit(string str)
        {
            var i = 0;
            return int.TryParse(str, out i);
        }

        static int DigitsSum(long num)
        {
            return num.ToString().Select(x => x.ToString()).Sum(int.Parse);
        }

        static int[] ToIntArray(string str)
        {
            return str.Select(x => x.ToString()).Select(int.Parse).ToArray();
        }

        static int Gcd(int a, int b) => b == 0 ? a : Gcd(b, a % b);

        static bool IsPrime(int x)
        {
            if (x <= 1 || (x != 2 && x % 2 == 0)) return false;
            if (x == 2) return true;

            for (int i = 3; i < x; i += 2)
                if (x % i == 0) return false;

            return true;
        }

        static string Read() => Console.ReadLine();
        static int ReadInt() => int.Parse(Read());
        static long ReadLong() => long.Parse(Read());

        static List<string> ReadSplit() => Read().Split().ToList();
        static List<int> ReadSplitInt() => Read().Split().Select(int.Parse).ToList();
        static List<long> ReadSplitLong() => Read().Split().Select(long.Parse).ToList();

        static void Print(object value) => Console.Write(value.ToString());
        static void Println(object value) => Console.WriteLine(value.ToString());

        static string Join<T>(IEnumerable<T> list) => string.Join("", list);
    }

    public static class MyExtensions
    {
        public static string Slice(this string str, int start = 0, int stop = 0)
        {
            if (start > str.Length || stop > str.Length || start < 0 || stop < 0)
                return "";

            if (stop == 0) stop = str.Length;
            return str.Substring(start, stop - start);
        }
    }
}
0