結果

問題 No.3 ビットすごろく
ユーザー Ryugo AbeRyugo Abe
提出日時 2016-12-15 15:13:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,087 bytes
コンパイル時間 2,275 ms
コンパイル使用メモリ 74,816 KB
実行使用メモリ 56,308 KB
最終ジャッジ日時 2024-11-30 08:23:35
合計ジャッジ時間 8,914 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 134 ms
41,612 KB
testcase_03 AC 140 ms
40,568 KB
testcase_04 WA -
testcase_05 AC 170 ms
41,728 KB
testcase_06 AC 161 ms
41,724 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 157 ms
41,748 KB
testcase_13 AC 156 ms
41,728 KB
testcase_14 AC 167 ms
41,616 KB
testcase_15 AC 173 ms
41,584 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 162 ms
42,032 KB
testcase_23 AC 173 ms
42,004 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 142 ms
41,620 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