結果

問題 No.3 ビットすごろく
ユーザー IceEijiIceEiji
提出日時 2019-03-21 18:34:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 739 bytes
コンパイル時間 1,905 ms
コンパイル使用メモリ 75,136 KB
実行使用メモリ 56,228 KB
最終ジャッジ日時 2024-09-19 01:48:11
合計ジャッジ時間 6,925 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,076 KB
testcase_01 AC 115 ms
41,124 KB
testcase_02 AC 113 ms
41,308 KB
testcase_03 AC 114 ms
41,596 KB
testcase_04 AC 126 ms
41,388 KB
testcase_05 AC 121 ms
41,116 KB
testcase_06 AC 126 ms
41,268 KB
testcase_07 AC 116 ms
41,116 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 118 ms
41,308 KB
testcase_13 AC 110 ms
41,516 KB
testcase_14 AC 101 ms
41,312 KB
testcase_15 AC 113 ms
41,300 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 114 ms
41,144 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 116 ms
40,956 KB
testcase_22 AC 114 ms
41,184 KB
testcase_23 AC 113 ms
41,460 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 103 ms
41,172 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class BitSugoroku {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        ArrayList<Integer> root = new ArrayList<Integer>();
        for (int i = 1; i < n;) {
            int mv = Integer.bitCount(i);
            int go = i + mv;
            int back = i - mv;
            if (go <= n) {
                i = go;
                root.add(go);
            } else {
                if (root.contains(back)) {
                    root.clear();
                    break;
                }
                i = back;
                root.add(back);
            }
        }
        System.out.println(root.size() != 0 ? root.size() + 1 : -1);
    }
}
0