結果

問題 No.3 ビットすごろく
ユーザー n_gojon_gojo
提出日時 2020-04-10 18:08:58
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,412 bytes
コンパイル時間 3,722 ms
コンパイル使用メモリ 78,892 KB
実行使用メモリ 50,924 KB
最終ジャッジ日時 2024-09-15 07:16:11
合計ジャッジ時間 9,829 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,000 KB
testcase_01 AC 120 ms
41,120 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 112 ms
39,992 KB
testcase_05 WA -
testcase_06 AC 228 ms
50,736 KB
testcase_07 AC 131 ms
41,776 KB
testcase_08 AC 147 ms
41,748 KB
testcase_09 AC 162 ms
42,636 KB
testcase_10 WA -
testcase_11 AC 148 ms
42,792 KB
testcase_12 AC 219 ms
50,924 KB
testcase_13 WA -
testcase_14 AC 230 ms
50,692 KB
testcase_15 AC 217 ms
50,868 KB
testcase_16 AC 160 ms
43,160 KB
testcase_17 AC 162 ms
43,600 KB
testcase_18 AC 127 ms
41,568 KB
testcase_19 AC 158 ms
43,148 KB
testcase_20 AC 127 ms
41,252 KB
testcase_21 AC 131 ms
41,084 KB
testcase_22 WA -
testcase_23 AC 229 ms
50,860 KB
testcase_24 AC 157 ms
43,020 KB
testcase_25 AC 167 ms
43,296 KB
testcase_26 AC 126 ms
41,368 KB
testcase_27 AC 120 ms
41,888 KB
testcase_28 WA -
testcase_29 AC 148 ms
42,440 KB
testcase_30 AC 125 ms
40,856 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

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)) {
                    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