結果

問題 No.3 ビットすごろく
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-20 12:44:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 742 ms / 5,000 ms
コード長 1,432 bytes
コンパイル時間 2,233 ms
コンパイル使用メモリ 77,564 KB
実行使用メモリ 248,912 KB
最終ジャッジ日時 2024-07-01 07:20:51
合計ジャッジ時間 14,761 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,136 KB
testcase_01 AC 132 ms
54,268 KB
testcase_02 AC 132 ms
53,960 KB
testcase_03 AC 218 ms
66,312 KB
testcase_04 AC 160 ms
53,956 KB
testcase_05 AC 332 ms
113,184 KB
testcase_06 AC 230 ms
66,220 KB
testcase_07 AC 178 ms
59,044 KB
testcase_08 AC 270 ms
85,892 KB
testcase_09 AC 454 ms
145,884 KB
testcase_10 AC 460 ms
189,668 KB
testcase_11 AC 414 ms
131,596 KB
testcase_12 AC 325 ms
113,372 KB
testcase_13 AC 184 ms
63,200 KB
testcase_14 AC 443 ms
189,360 KB
testcase_15 AC 617 ms
244,404 KB
testcase_16 AC 742 ms
234,692 KB
testcase_17 AC 599 ms
238,368 KB
testcase_18 AC 191 ms
58,760 KB
testcase_19 AC 611 ms
248,820 KB
testcase_20 AC 147 ms
54,348 KB
testcase_21 AC 130 ms
53,992 KB
testcase_22 AC 447 ms
188,048 KB
testcase_23 AC 613 ms
248,844 KB
testcase_24 AC 614 ms
248,912 KB
testcase_25 AC 613 ms
244,336 KB
testcase_26 AC 134 ms
54,372 KB
testcase_27 AC 191 ms
63,620 KB
testcase_28 AC 731 ms
234,116 KB
testcase_29 AC 416 ms
134,364 KB
testcase_30 AC 133 ms
54,084 KB
testcase_31 AC 137 ms
53,996 KB
testcase_32 AC 391 ms
131,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        int n = koko.nextInt();
        boolean[][] goal = new boolean[2*n+1][n+1];
        goal[1][1]=true;
        boolean[] judge = new boolean[n+1];
        judge[1] = true;
        for(int i=1; i<2*n+1; i++){
            for(int j=1; j<n+1; j++){
                if(goal[i][j]){
                    String jud = Integer.toBinaryString(j);
                    char[] num = jud.toCharArray();
                    int count=0;
                    for(int k=0; k<num.length; k++){
                        if(num[k]=='1'){
                            count++;
                        }
                    }
                    if(j+count<n+1&&!judge[j+count]){
                        goal[i+1][j+count]=true;
                        judge[j+count]=true;
                    }
                    if(j-count>1&&!judge[j-count]){
                        goal[i+1][j-count]=true;
                        judge[j-count]=true;
                    }
                }
            }
        }
        boolean flag = false;
        for(int i=1; i<2*n+1; i++){
            if(goal[i][n]){
                System.out.println(i);
                flag=true;
                break;
            }
        }
        if(!flag){
            System.out.println(-1);
        }
        
    }
    
}
0