結果

問題 No.2 素因数ゲーム
ユーザー maruyuki95maruyuki95
提出日時 2020-05-29 12:47:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,512 bytes
コンパイル時間 4,444 ms
コンパイル使用メモリ 81,128 KB
実行使用メモリ 41,308 KB
最終ジャッジ日時 2024-10-15 00:02:12
合計ジャッジ時間 10,011 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,064 KB
testcase_01 AC 122 ms
40,708 KB
testcase_02 AC 121 ms
41,176 KB
testcase_03 AC 117 ms
41,208 KB
testcase_04 AC 119 ms
40,716 KB
testcase_05 AC 111 ms
40,032 KB
testcase_06 AC 121 ms
41,124 KB
testcase_07 AC 108 ms
39,848 KB
testcase_08 AC 126 ms
40,456 KB
testcase_09 AC 124 ms
41,308 KB
testcase_10 AC 120 ms
40,984 KB
testcase_11 AC 114 ms
41,236 KB
testcase_12 AC 116 ms
41,088 KB
testcase_13 AC 120 ms
40,984 KB
testcase_14 AC 118 ms
40,912 KB
testcase_15 AC 118 ms
40,944 KB
testcase_16 AC 104 ms
39,716 KB
testcase_17 AC 123 ms
41,240 KB
testcase_18 AC 118 ms
41,000 KB
testcase_19 AC 298 ms
40,000 KB
testcase_20 AC 241 ms
40,680 KB
testcase_21 AC 457 ms
41,024 KB
testcase_22 AC 131 ms
41,056 KB
testcase_23 AC 105 ms
40,244 KB
testcase_24 AC 108 ms
39,848 KB
testcase_25 AC 130 ms
41,140 KB
testcase_26 AC 110 ms
40,272 KB
testcase_27 WA -
testcase_28 AC 118 ms
40,712 KB
testcase_29 AC 116 ms
41,172 KB
testcase_30 AC 119 ms
41,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {

	private static final String FIRST_PLAYER_NAME = "Alice";
	private static final String SECOND_PLAYER_NAME = "Bob";
	private static final int MIN_PRIME = 2;

	public static void main(String[] args) {
		new Main().execute();
	}

	private void execute() {
		int number = loadInputValue();
		String winnerName = judgeWinner(number);
		outputResult(winnerName);
	}

	String judgeWinner(int number) {
		Map<Integer, Integer> primeFactorizationMap = calculatePrimeFactorization(number, MIN_PRIME);

		if (isFirstPlayerWinner(primeFactorizationMap)) {
			return FIRST_PLAYER_NAME;
		}
		return SECOND_PLAYER_NAME;
	}

	/**
	 * 素因数分解する
	 * @param number	素因数分解する数	(e.g.)24
	 * @param minCheckingPrime	素因数かどうかチェックし始める素数の最小値	(e.g.)2
	 * @return keyに素因数、valueにその指数を保持するMap	(e.g.) {2=3, 3=1}
	 */
	private Map<Integer, Integer> calculatePrimeFactorization(int number, int minCheckingPrime) {
		if (number == 1) {
			return new HashMap<Integer, Integer>();
		}

		for (int i = minCheckingPrime; i <= number; i++) {
			if (number % i == 0) {
				Map<Integer, Integer> primeFactorizationMap = calculatePrimeFactorization(number / i, i);

				Integer exponent = primeFactorizationMap.get(i);
				if (exponent == null) {
					exponent = 0;
				}
				primeFactorizationMap.put(i, ++exponent);
				return primeFactorizationMap;
			}

		}
		throw new IllegalStateException("対象の数値「" + number + "」には約数が存在しません。");
	}

	private boolean isFirstPlayerWinner(Map<Integer, Integer> primeFactorizationMap) {
		return isFirstPlayerWinnerRecursively(new ArrayList<Integer>(primeFactorizationMap.values()));
	}

	private boolean isFirstPlayerWinnerRecursively(List<Integer> exponents) {
		if (exponents.size() == 0) {
			return false;
		}
		if (exponents.size() == 1) {
			return true;
		}

		Integer exponentValue1 = exponents.remove(0);
		Integer exponentValue2 = exponents.remove(0);
		if (exponentValue1 != exponentValue2) {
			exponents.add(Math.abs(exponentValue1 - exponentValue2));
		}
		return isFirstPlayerWinnerRecursively(exponents);
	}

	@SuppressWarnings("resource")
	private int loadInputValue() {
		Scanner sc = new Scanner(System.in);
		return sc.nextInt();
	}

	private void outputResult(String result) {
		System.out.println(result);
	}

}
0