結果

問題 No.3 ビットすごろく
ユーザー mikan765mikan765
提出日時 2017-07-05 13:28:22
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 698 bytes
コンパイル時間 1,915 ms
コンパイル使用メモリ 77,212 KB
実行使用メモリ 56,244 KB
最終ジャッジ日時 2024-10-05 19:51:23
合計ジャッジ時間 6,519 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
54,080 KB
testcase_01 AC 107 ms
53,104 KB
testcase_02 AC 108 ms
53,156 KB
testcase_03 AC 110 ms
53,560 KB
testcase_04 AC 117 ms
54,108 KB
testcase_05 AC 127 ms
55,856 KB
testcase_06 AC 107 ms
53,508 KB
testcase_07 AC 108 ms
53,860 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 112 ms
53,616 KB
testcase_13 AC 97 ms
52,328 KB
testcase_14 AC 109 ms
53,348 KB
testcase_15 AC 117 ms
54,116 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 107 ms
52,820 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 99 ms
52,796 KB
testcase_22 AC 116 ms
54,328 KB
testcase_23 AC 115 ms
53,992 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 107 ms
52,740 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 115 ms
53,964 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.Arrays;

public class Main {
	static int[] isOk = new int[10000];
	static int n;
	public static void main(String[] args){
		Arrays.fill(isOk, 0);
		Scanner sc = new Scanner(System.in);
		n = sc.nextInt();
		isOk[0] = 1;
		check(1);
		if(isOk[n-1]==0){
			System.out.println(-1);
		}else{
			System.out.println(isOk[n-1]);
		}
	}

	static void check(int x){
			int sum = 0;
			int xx = x;
			do{
				sum += xx%2;
				xx = xx/2;
			}while(xx>0);
			if(x+sum<=n){
				if(isOk[x+sum-1]==0){
					isOk[x+sum-1]=isOk[x-1]+1;
					check(x+sum);
				}
			}
			if(x-sum>0){
				if(isOk[x-sum-1]==0){
					isOk[x-sum-1]=isOk[x-1]+1;
					check(x-sum);
				}
			}
		
	}
}
0