結果

問題 No.3 ビットすごろく
ユーザー AreTrashAreTrash
提出日時 2016-04-09 03:43:52
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,127 bytes
コンパイル時間 970 ms
コンパイル使用メモリ 112,776 KB
実行使用メモリ 26,036 KB
最終ジャッジ日時 2024-10-04 05:02:03
合計ジャッジ時間 4,650 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
23,796 KB
testcase_01 AC 25 ms
25,592 KB
testcase_02 AC 25 ms
23,796 KB
testcase_03 AC 34 ms
23,724 KB
testcase_04 AC 26 ms
25,728 KB
testcase_05 AC 64 ms
25,736 KB
testcase_06 AC 35 ms
25,792 KB
testcase_07 AC 28 ms
23,916 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 61 ms
21,816 KB
testcase_13 AC 30 ms
23,540 KB
testcase_14 AC 110 ms
23,984 KB
testcase_15 AC 159 ms
24,048 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 29 ms
25,828 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 23 ms
23,664 KB
testcase_22 AC 114 ms
23,924 KB
testcase_23 AC 162 ms
24,004 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 24 ms
25,452 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 24 ms
23,532 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;

namespace No3_1{
    public class Program{
        private static List<int> stack = new List<int>();
        private static int min = int.MaxValue;
        public static void Main(string[] args){
            var result = Function(int.Parse(Console.ReadLine()), 1, 1);
            if(result == int.MaxValue) result = -1;
            Console.WriteLine(result);
            Console.ReadLine();
        }

        public static int Function(int input, int place, int cnt){
            if(place == input) return min = cnt;
            if(cnt >= input || cnt >= min || stack.Contains(place) || place < 1 || input < place) return int.MaxValue;
            stack.Add(place);
            var result = Math.Min(Function(input, place + BitOne(place), cnt + 1), Function(input, place - BitOne(place), cnt + 1));
            return result;
        }

        public static int BitOne(int num){
            var result = 0;
            while(true){
                if(num % 2 == 1) result++;
                if((num /= 2) == 0) break;
            }
            return result;
        }
    }
}
0