結果

問題 No.3 ビットすごろく
ユーザー mbanmban
提出日時 2016-10-31 14:02:41
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 31 ms / 5,000 ms
コード長 937 bytes
コンパイル時間 1,117 ms
コンパイル使用メモリ 109,920 KB
実行使用メモリ 27,324 KB
最終ジャッジ日時 2024-07-01 08:08:57
合計ジャッジ時間 3,059 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
23,092 KB
testcase_01 AC 28 ms
26,812 KB
testcase_02 AC 28 ms
24,780 KB
testcase_03 AC 28 ms
22,704 KB
testcase_04 AC 28 ms
27,324 KB
testcase_05 AC 29 ms
25,140 KB
testcase_06 AC 28 ms
25,284 KB
testcase_07 AC 29 ms
25,160 KB
testcase_08 AC 29 ms
24,756 KB
testcase_09 AC 29 ms
22,964 KB
testcase_10 AC 30 ms
24,732 KB
testcase_11 AC 29 ms
25,032 KB
testcase_12 AC 29 ms
27,004 KB
testcase_13 AC 29 ms
26,812 KB
testcase_14 AC 30 ms
24,776 KB
testcase_15 AC 31 ms
25,160 KB
testcase_16 AC 29 ms
24,644 KB
testcase_17 AC 30 ms
26,812 KB
testcase_18 AC 29 ms
26,688 KB
testcase_19 AC 30 ms
26,812 KB
testcase_20 AC 28 ms
24,900 KB
testcase_21 AC 27 ms
22,964 KB
testcase_22 AC 30 ms
25,288 KB
testcase_23 AC 31 ms
24,772 KB
testcase_24 AC 30 ms
25,028 KB
testcase_25 AC 30 ms
25,116 KB
testcase_26 AC 28 ms
25,132 KB
testcase_27 AC 28 ms
25,160 KB
testcase_28 AC 30 ms
27,016 KB
testcase_29 AC 29 ms
25,136 KB
testcase_30 AC 28 ms
24,772 KB
testcase_31 AC 28 ms
26,688 KB
testcase_32 AC 30 ms
27,012 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.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

class Magatro
{

    static void Main()
    {
        int N = int.Parse(Console.ReadLine());
        int[] w = (new int[N + 1]).Select(s=>-1).ToArray();
        w[1] = 1;
        Queue<int> q = new Queue<int>();
        q.Enqueue(1);
        while (q.Count > 0)
        {
            int e = q.Dequeue();
            if (e + bit(e) <= N&& w[e + bit(e)]==-1)
            {
                w[e + bit(e)] = w[e] + 1;
                q.Enqueue(e + bit(e));
            }
            if (e - bit(e) >= 1&& w[e - bit(e)]==-1)
            {
                w[e - bit(e)] = w[e] + 1;
                q.Enqueue(e - bit(e));
            }
        }
        Console.WriteLine(w[N]);

    }
    static int bit(int n)
    {
        if (n == 0)
        {
            return 0;
        }
        return bit(n / 2) + n % 2;
    }
 
}


0