結果

問題 No.3 ビットすごろく
ユーザー villachvillach
提出日時 2017-09-19 00:45:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,052 bytes
コンパイル時間 4,110 ms
コンパイル使用メモリ 77,740 KB
実行使用メモリ 42,204 KB
最終ジャッジ日時 2024-11-08 02:43:39
合計ジャッジ時間 11,817 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,004 KB
testcase_01 AC 138 ms
41,316 KB
testcase_02 AC 135 ms
41,568 KB
testcase_03 AC 161 ms
41,476 KB
testcase_04 AC 162 ms
41,672 KB
testcase_05 AC 200 ms
41,824 KB
testcase_06 AC 164 ms
41,444 KB
testcase_07 AC 156 ms
41,536 KB
testcase_08 AC 179 ms
41,812 KB
testcase_09 AC 222 ms
41,636 KB
testcase_10 AC 256 ms
41,612 KB
testcase_11 AC 218 ms
41,580 KB
testcase_12 AC 198 ms
41,876 KB
testcase_13 AC 157 ms
41,568 KB
testcase_14 AC 257 ms
42,056 KB
testcase_15 AC 299 ms
41,904 KB
testcase_16 AC 280 ms
42,204 KB
testcase_17 AC 295 ms
41,948 KB
testcase_18 AC 138 ms
40,360 KB
testcase_19 AC 301 ms
42,080 KB
testcase_20 AC 153 ms
41,044 KB
testcase_21 AC 133 ms
41,052 KB
testcase_22 AC 257 ms
41,780 KB
testcase_23 AC 301 ms
42,092 KB
testcase_24 AC 293 ms
41,216 KB
testcase_25 AC 298 ms
42,204 KB
testcase_26 WA -
testcase_27 AC 155 ms
41,264 KB
testcase_28 AC 276 ms
41,980 KB
testcase_29 AC 216 ms
41,700 KB
testcase_30 AC 142 ms
41,352 KB
testcase_31 AC 140 ms
41,204 KB
testcase_32 AC 211 ms
41,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.LinkedList;
import java.util.Scanner;

public class N3 {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		LinkedList<Integer> queue = new LinkedList<Integer>();
		LinkedList<Integer> visited = new LinkedList<Integer>();
		int i = 1;
		int a, b, dist;
		
		for(int j = 0;j <= n;++j){
			visited.add(0);
		}
		
		if(n == 1){
			System.out.println(0);
			return;
		}
		
		while(true){
			dist = visited.get(i);
			a = i - countBin(i);
			b = i + countBin(i);
			if(a > 0 && a <= n && visited.get(a) == 0){
				visited.set(a, dist + 1);
				queue.offer(a);
			}
			if(b > 0 && b <= n && visited.get(b) == 0){
				visited.set(b, dist + 1);
				queue.offer(b);
			}
			
			if(a == n || b == n){
				System.out.println(dist + 2);
				return;
			}
			
			if(queue.size() == 0){
				System.out.println(-1);
				return;
			}
			i = queue.poll();
		}
	}
	
	public static int countBin(int x){
		int i = 0;
		while(x != 0){
			i += x % 2;
			x /= 2;
		}
		return i;
	}
}
0