結果

問題 No.3 ビットすごろく
ユーザー marumaru
提出日時 2017-09-23 12:18:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,189 bytes
コンパイル時間 3,729 ms
コンパイル使用メモリ 78,004 KB
実行使用メモリ 56,156 KB
最終ジャッジ日時 2024-11-14 04:08:47
合計ジャッジ時間 9,228 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,040 KB
testcase_01 AC 126 ms
54,024 KB
testcase_02 AC 129 ms
53,848 KB
testcase_03 AC 128 ms
54,112 KB
testcase_04 AC 128 ms
54,152 KB
testcase_05 AC 132 ms
54,636 KB
testcase_06 AC 130 ms
54,112 KB
testcase_07 AC 133 ms
54,244 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 129 ms
53,820 KB
testcase_13 AC 130 ms
54,196 KB
testcase_14 AC 129 ms
54,076 KB
testcase_15 AC 153 ms
54,320 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 117 ms
53,020 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 126 ms
54,080 KB
testcase_22 AC 128 ms
54,264 KB
testcase_23 AC 147 ms
54,364 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 137 ms
54,116 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 114 ms
52,984 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package bitsgoroku;

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Bitsugoroku {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int n = scan.nextInt();

		try {
			int now = 1;
			List<Integer> resultList = new ArrayList<Integer>();
			List<Integer> backList = new ArrayList<>();
			while (now != n) {
				int bitCount = changeBinary(now);
				if ((now + bitCount) > n) {// nを超えてしまう時
					resultList.add(now);
					if (backList.contains(now)) {
						break;
					}
					backList.add(now);
					now -= bitCount;

				} else if ((now + bitCount) <= n) {// nを超えない時
					resultList.add(now);
					now += bitCount;
				}
			}
			if (now != n) {
				System.out.println("-1");
			} else {
				resultList.add(now);
				System.out.println(resultList.size());
			}

		} catch (Exception e) {
			System.out.println(e);
		}
	}

	private static int changeBinary(int result) {
		String bin = Integer.toBinaryString(result);

		// 2進数の1の数を数える
		int binCount = 0;
		for (char sss : bin.toCharArray()) {
			if (sss == '1') {
				binCount++;
			}
		}
		return binCount;
	}

}
0