結果

問題 No.3 ビットすごろく
ユーザー Ryugo AbeRyugo Abe
提出日時 2016-12-15 15:13:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,087 bytes
コンパイル時間 2,025 ms
コンパイル使用メモリ 74,780 KB
実行使用メモリ 42,348 KB
最終ジャッジ日時 2024-05-07 14:51:49
合計ジャッジ時間 7,750 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 111 ms
41,224 KB
testcase_03 AC 138 ms
41,072 KB
testcase_04 WA -
testcase_05 AC 128 ms
40,640 KB
testcase_06 AC 131 ms
41,312 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 145 ms
41,224 KB
testcase_13 AC 128 ms
40,424 KB
testcase_14 AC 144 ms
41,444 KB
testcase_15 AC 148 ms
41,472 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 150 ms
41,576 KB
testcase_23 AC 144 ms
41,852 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 102 ms
39,836 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int goal = sc.nextInt();
        sc.close();
        int moveCount = 1;
        int currentPos = 1;

        List<Integer> moveHistory = new ArrayList<Integer>();

        while (true) {
            if (goal == currentPos) {
                break;
            }
            if (moveHistory.contains(currentPos)) {
                moveCount = -1;
                break;
            }
            moveHistory.add(currentPos);

            // dice!
            int dice = int2bit1count(currentPos);
            if (goal > currentPos + dice) {
                currentPos += dice;
            } else {
                currentPos -= dice;
            }
            moveCount++;
        }

        System.out.println(moveCount);
    }

    public static int int2bit1count(Integer num) {
        String bitStr = Integer.toBinaryString(num);
        return bitStr.replace("0", "").length();
    }
}
0