結果

問題 No.3 ビットすごろく
ユーザー mitsuomitsuo
提出日時 2016-05-05 17:29:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,231 bytes
コンパイル時間 2,554 ms
コンパイル使用メモリ 78,956 KB
実行使用メモリ 63,524 KB
最終ジャッジ日時 2024-10-05 09:48:20
合計ジャッジ時間 18,917 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
53,932 KB
testcase_01 AC 116 ms
53,832 KB
testcase_02 AC 111 ms
53,512 KB
testcase_03 AC 316 ms
62,892 KB
testcase_04 AC 186 ms
56,580 KB
testcase_05 AC 450 ms
62,804 KB
testcase_06 AC 308 ms
63,524 KB
testcase_07 AC 248 ms
63,084 KB
testcase_08 AC 385 ms
62,632 KB
testcase_09 AC 565 ms
63,360 KB
testcase_10 AC 682 ms
63,396 KB
testcase_11 AC 519 ms
63,056 KB
testcase_12 AC 469 ms
63,064 KB
testcase_13 AC 297 ms
63,144 KB
testcase_14 AC 655 ms
62,772 KB
testcase_15 AC 889 ms
63,452 KB
testcase_16 WA -
testcase_17 AC 922 ms
62,920 KB
testcase_18 AC 309 ms
62,708 KB
testcase_19 AC 967 ms
63,204 KB
testcase_20 AC 167 ms
56,312 KB
testcase_21 AC 120 ms
53,936 KB
testcase_22 AC 728 ms
63,036 KB
testcase_23 AC 931 ms
63,240 KB
testcase_24 AC 959 ms
63,300 KB
testcase_25 AC 912 ms
63,368 KB
testcase_26 AC 118 ms
53,652 KB
testcase_27 AC 305 ms
63,024 KB
testcase_28 AC 803 ms
62,756 KB
testcase_29 AC 521 ms
63,396 KB
testcase_30 AC 112 ms
53,168 KB
testcase_31 AC 135 ms
53,344 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package jp.fedom.challange.yuki.l2.q3;

import java.math.BigInteger;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		List<String> input = new ArrayList<>();
		while (sc.hasNext()) {
			input.add(sc.nextLine());
		}

		System.out.println(solve(input));

		sc.close();
	}

	public static int solve(List<String> in) {
		int N = Integer.valueOf(in.get(0));
		Map<Integer, Integer> av = new HashMap<Integer, Integer>();

		av.put(0, 0);
		av.put(1, 1);
		for (int i = 0; i <= N; i++) {
			// System.out.println(av + " / " + i);
			int bit = BigInteger.valueOf(i).bitCount();
			if (!av.containsKey(i)) {
				continue;
			}

			int minD = av.get(i);

			if (i + bit <= N) {
				if (!av.containsKey(i + bit)) {
					av.put(i + bit, minD + 1);
				}
				av.put(i + bit, Math.min(minD + 1, av.get(i + bit)));
			}

			if (i - bit >= 0) {
				if (!av.containsKey(i - bit)) {
					av.put(i - bit, minD + 1);
					i = 0;
					continue;
				}
				av.put(i - bit, Math.min(minD + 1, av.get(i - bit)));
			}
		}

		return av.containsKey(N) ? av.get(N) : -1;
	}

}
0