結果

問題 No.3 ビットすごろく
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-12 00:00:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 704 bytes
コンパイル時間 2,117 ms
コンパイル使用メモリ 81,456 KB
実行使用メモリ 54,532 KB
最終ジャッジ日時 2024-07-01 08:11:28
合計ジャッジ時間 7,603 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,236 KB
testcase_01 AC 133 ms
53,676 KB
testcase_02 AC 131 ms
54,140 KB
testcase_03 AC 128 ms
54,256 KB
testcase_04 AC 131 ms
54,368 KB
testcase_05 AC 136 ms
53,896 KB
testcase_06 AC 135 ms
54,468 KB
testcase_07 AC 132 ms
53,808 KB
testcase_08 AC 134 ms
54,532 KB
testcase_09 AC 132 ms
54,116 KB
testcase_10 AC 139 ms
53,840 KB
testcase_11 AC 137 ms
53,748 KB
testcase_12 AC 135 ms
53,988 KB
testcase_13 AC 135 ms
54,496 KB
testcase_14 AC 141 ms
54,368 KB
testcase_15 AC 141 ms
54,076 KB
testcase_16 AC 140 ms
54,284 KB
testcase_17 AC 141 ms
54,196 KB
testcase_18 AC 134 ms
53,952 KB
testcase_19 AC 140 ms
54,388 KB
testcase_20 AC 137 ms
53,944 KB
testcase_21 AC 134 ms
54,080 KB
testcase_22 AC 142 ms
54,228 KB
testcase_23 AC 141 ms
54,108 KB
testcase_24 AC 141 ms
54,228 KB
testcase_25 AC 140 ms
53,960 KB
testcase_26 AC 127 ms
53,840 KB
testcase_27 AC 133 ms
53,952 KB
testcase_28 AC 139 ms
54,040 KB
testcase_29 AC 134 ms
54,180 KB
testcase_30 AC 133 ms
53,888 KB
testcase_31 AC 134 ms
54,276 KB
testcase_32 AC 121 ms
53,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int [] c = new int [N+1];
        c[1]=1;
        Queue<Integer> q = new LinkedList<>();
        q.add(1);
        while(!q.isEmpty()){
            int t = q.poll();
            int p = Integer.bitCount(t);
            int b = t-p;
            int f = t+p;
            if(b>0&&c[b]==0){
                c[b]=c[t]+1;
                q.add(b);
            }
            if(f<=N&&c[f]==0){
                c[f]=c[t]+1;
                q.add(f);
            }
        }
        if(c[N]==0)c[N]=-1;
        System.out.println(c[N]);
    }
}
0