結果

問題 No.3 ビットすごろく
ユーザー pirorirori_n712pirorirori_n712
提出日時 2018-10-18 02:08:59
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 33 ms / 5,000 ms
コード長 1,134 bytes
コンパイル時間 1,019 ms
コンパイル使用メモリ 112,160 KB
実行使用メモリ 28,632 KB
最終ジャッジ日時 2024-07-01 09:09:59
合計ジャッジ時間 2,768 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
24,624 KB
testcase_01 AC 26 ms
24,496 KB
testcase_02 AC 26 ms
24,684 KB
testcase_03 AC 28 ms
22,716 KB
testcase_04 AC 27 ms
24,616 KB
testcase_05 AC 29 ms
26,440 KB
testcase_06 AC 28 ms
24,548 KB
testcase_07 AC 28 ms
24,552 KB
testcase_08 AC 30 ms
24,556 KB
testcase_09 AC 30 ms
24,952 KB
testcase_10 AC 31 ms
24,552 KB
testcase_11 AC 30 ms
24,680 KB
testcase_12 AC 29 ms
24,652 KB
testcase_13 AC 28 ms
24,688 KB
testcase_14 AC 30 ms
24,424 KB
testcase_15 AC 32 ms
26,580 KB
testcase_16 AC 32 ms
26,824 KB
testcase_17 AC 33 ms
28,632 KB
testcase_18 AC 28 ms
22,448 KB
testcase_19 AC 32 ms
26,836 KB
testcase_20 AC 27 ms
22,320 KB
testcase_21 AC 27 ms
24,428 KB
testcase_22 AC 31 ms
24,532 KB
testcase_23 AC 32 ms
26,696 KB
testcase_24 AC 33 ms
26,568 KB
testcase_25 AC 32 ms
26,444 KB
testcase_26 AC 27 ms
24,432 KB
testcase_27 AC 29 ms
24,684 KB
testcase_28 AC 31 ms
24,268 KB
testcase_29 AC 30 ms
24,748 KB
testcase_30 AC 27 ms
26,852 KB
testcase_31 AC 27 ms
24,556 KB
testcase_32 AC 30 ms
26,568 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Linq;
using System.Collections.Generic;

class No3
{
    static void Main()
    {
        var N = Int32.Parse(Console.ReadLine());
        var array = new int[N];
        for (int i = 0; i < N; ++i) array[i] = -1;
        array[0] = 1;
        var list = new Queue<int>();
        list.Enqueue(0);

        while (list.Count>0)
        {
            var u = list.Dequeue();
           
            var b = GetBit(u+1);
            if ((u + b) < N && array[u + b] == -1)
            {
                list.Enqueue(u + b);
                array[u + b] = array[u] + 1;
            }
            if (-1 < (u - b) && array[u - b] == -1)
            {
                list.Enqueue(u - b);
                array[u - b] = array[u] + 1;
            }
        }
        Console.WriteLine(array[N - 1]);
    }

    //二進数に直す
    static int GetBit(int num)
    {
        var list = new List<int>();
        while (num != 0 && num != 1)
        {
            if (num % 2 == 1) list.Add(1);
            else list.Add(0);
            num /= 2;
        }
        list.Add(num);
        return list.Sum();
    }
}
0