結果

問題 No.3 ビットすごろく
ユーザー n_gojon_gojo
提出日時 2020-04-10 18:10:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 181 ms / 5,000 ms
コード長 1,432 bytes
コンパイル時間 4,075 ms
コンパイル使用メモリ 78,992 KB
実行使用メモリ 45,084 KB
最終ジャッジ日時 2024-07-01 09:45:08
合計ジャッジ時間 10,769 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,240 KB
testcase_01 AC 134 ms
41,152 KB
testcase_02 AC 149 ms
42,648 KB
testcase_03 AC 160 ms
43,128 KB
testcase_04 AC 144 ms
41,536 KB
testcase_05 AC 169 ms
43,912 KB
testcase_06 AC 167 ms
43,204 KB
testcase_07 AC 140 ms
41,920 KB
testcase_08 AC 171 ms
42,176 KB
testcase_09 AC 179 ms
42,772 KB
testcase_10 AC 177 ms
43,452 KB
testcase_11 AC 176 ms
43,080 KB
testcase_12 AC 171 ms
43,852 KB
testcase_13 AC 159 ms
43,224 KB
testcase_14 AC 180 ms
44,280 KB
testcase_15 AC 179 ms
44,608 KB
testcase_16 AC 168 ms
43,400 KB
testcase_17 AC 177 ms
43,424 KB
testcase_18 AC 142 ms
41,448 KB
testcase_19 AC 181 ms
43,716 KB
testcase_20 AC 121 ms
40,336 KB
testcase_21 AC 131 ms
41,304 KB
testcase_22 AC 177 ms
44,364 KB
testcase_23 AC 177 ms
44,132 KB
testcase_24 AC 175 ms
45,084 KB
testcase_25 AC 174 ms
45,072 KB
testcase_26 AC 131 ms
40,952 KB
testcase_27 AC 140 ms
41,736 KB
testcase_28 AC 166 ms
43,072 KB
testcase_29 AC 163 ms
42,836 KB
testcase_30 AC 134 ms
41,280 KB
testcase_31 AC 133 ms
41,400 KB
testcase_32 AC 165 ms
42,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashSet;
import java.util.Iterator;
import java.util.Scanner;
import java.util.Set;

public class No3 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        int ans = 1;
        Set oldNo = new HashSet<>();
        Set nowNo = new HashSet<>();
        Set nextNo = new HashSet<>();
        nowNo.add(1);
        oldNo.add(1);
        while (ans != 10000) {
            if (nowNo.contains(n)) {
                System.out.println(ans);
                return;
            }
            for(Iterator<Integer> iterator = nowNo.iterator(); iterator.hasNext(); ) {
                Integer value = iterator.next();
                int i = value;
                int s = 0;
                while (i > 0) {
                    s += i%2;
                    i/=2;
                }
                if (!oldNo.contains(value + s) && n >= (value + s)) {
                    nextNo.add(value + s);
                    oldNo.add(value + s);
                }
                if (!oldNo.contains(value - s)) {
                    nextNo.add(value - s);
                    oldNo.add(value - s);
                }
            }
            nowNo = nextNo;
            nextNo = new HashSet<>();
            ans++;
        }
        System.out.println("-1");

    }
}
0