結果

問題 No.3 ビットすごろく
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-03 18:45:53
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 833 bytes
コンパイル時間 2,522 ms
コンパイル使用メモリ 77,364 KB
実行使用メモリ 54,372 KB
最終ジャッジ日時 2024-12-17 19:28:47
合計ジャッジ時間 7,453 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
54,220 KB
testcase_01 AC 122 ms
54,180 KB
testcase_02 AC 115 ms
53,720 KB
testcase_03 AC 130 ms
54,148 KB
testcase_04 AC 115 ms
53,124 KB
testcase_05 AC 138 ms
54,136 KB
testcase_06 AC 131 ms
53,936 KB
testcase_07 AC 127 ms
53,876 KB
testcase_08 AC 137 ms
53,996 KB
testcase_09 AC 146 ms
53,808 KB
testcase_10 AC 136 ms
52,960 KB
testcase_11 AC 136 ms
54,016 KB
testcase_12 AC 136 ms
54,208 KB
testcase_13 AC 130 ms
53,964 KB
testcase_14 AC 145 ms
54,060 KB
testcase_15 AC 154 ms
54,200 KB
testcase_16 AC 134 ms
52,804 KB
testcase_17 AC 148 ms
53,776 KB
testcase_18 AC 116 ms
52,900 KB
testcase_19 AC 148 ms
54,372 KB
testcase_20 AC 106 ms
53,020 KB
testcase_21 AC 113 ms
52,944 KB
testcase_22 AC 147 ms
53,936 KB
testcase_23 AC 160 ms
54,136 KB
testcase_24 AC 150 ms
53,852 KB
testcase_25 AC 149 ms
53,852 KB
testcase_26 AC 113 ms
52,940 KB
testcase_27 AC 131 ms
53,976 KB
testcase_28 AC 138 ms
53,024 KB
testcase_29 AC 125 ms
53,056 KB
testcase_30 AC 124 ms
53,720 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

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];
        for(int i=2; i<=N; i++){
            c[i]=10000;
        }
        for(int i=1; i<=N; i++){
            int t=Integer.bitCount(i);
            go(c,i,N);
            if(i-t>=1&&c[i-t]>c[i]+1){
                c[i-t]=c[i]+1;
                go(c,i-t,N);
            }
        }
        int ans=-1;
        if(c[N]!=10000){
            ans=c[N]+1;
        }
        System.out.println(ans);
    }
    static int[] go(int []a, int i, int N){
        int t=Integer.bitCount(i);
        while(i+t<=N){
            a[i+t]=Math.min(a[i+t],a[i]+1);
            i=i+t;
            t=Integer.bitCount(i);
        }
        return a;
    }
}
0