結果

問題 No.3 ビットすごろく
ユーザー mitsuomitsuo
提出日時 2016-05-05 17:33:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,218 bytes
コンパイル時間 2,914 ms
コンパイル使用メモリ 79,308 KB
実行使用メモリ 63,492 KB
最終ジャッジ日時 2024-10-05 09:49:13
合計ジャッジ時間 17,661 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
52,516 KB
testcase_01 AC 100 ms
52,756 KB
testcase_02 AC 112 ms
53,872 KB
testcase_03 AC 312 ms
63,136 KB
testcase_04 AC 181 ms
57,080 KB
testcase_05 AC 438 ms
63,328 KB
testcase_06 AC 313 ms
62,904 KB
testcase_07 AC 244 ms
62,820 KB
testcase_08 AC 372 ms
62,980 KB
testcase_09 AC 541 ms
63,308 KB
testcase_10 AC 678 ms
62,764 KB
testcase_11 AC 486 ms
63,044 KB
testcase_12 AC 419 ms
63,264 KB
testcase_13 AC 292 ms
62,748 KB
testcase_14 AC 647 ms
62,796 KB
testcase_15 AC 823 ms
62,636 KB
testcase_16 WA -
testcase_17 AC 845 ms
63,356 KB
testcase_18 AC 268 ms
62,824 KB
testcase_19 AC 826 ms
63,040 KB
testcase_20 AC 159 ms
55,740 KB
testcase_21 AC 110 ms
53,536 KB
testcase_22 AC 635 ms
63,068 KB
testcase_23 AC 860 ms
63,016 KB
testcase_24 AC 863 ms
63,032 KB
testcase_25 AC 826 ms
63,068 KB
testcase_26 AC 110 ms
53,788 KB
testcase_27 AC 303 ms
63,200 KB
testcase_28 AC 766 ms
62,552 KB
testcase_29 AC 514 ms
63,296 KB
testcase_30 AC 116 ms
53,668 KB
testcase_31 AC 121 ms
53,736 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(1, 1);
		for (int i = 1; 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 >= 1) {
				if (!av.containsKey(i - bit)) {
					av.put(i - bit, minD + 1);
					i = 1;
					continue;
				}
				av.put(i - bit, Math.min(minD + 1, av.get(i - bit)));
			}
		}
		

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

}
0