結果

問題 No.2 素因数ゲーム
ユーザー tentententen
提出日時 2020-11-26 14:45:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 587 bytes
コンパイル時間 3,507 ms
コンパイル使用メモリ 75,840 KB
実行使用メモリ 54,208 KB
最終ジャッジ日時 2024-07-23 20:49:31
合計ジャッジ時間 7,991 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,116 KB
testcase_01 AC 128 ms
54,088 KB
testcase_02 AC 133 ms
54,056 KB
testcase_03 AC 117 ms
52,592 KB
testcase_04 AC 129 ms
54,056 KB
testcase_05 AC 126 ms
54,144 KB
testcase_06 AC 126 ms
54,004 KB
testcase_07 AC 125 ms
53,800 KB
testcase_08 AC 128 ms
53,712 KB
testcase_09 AC 134 ms
54,080 KB
testcase_10 AC 132 ms
53,944 KB
testcase_11 AC 130 ms
53,908 KB
testcase_12 AC 131 ms
54,028 KB
testcase_13 AC 129 ms
53,816 KB
testcase_14 AC 127 ms
53,820 KB
testcase_15 AC 126 ms
54,108 KB
testcase_16 AC 126 ms
53,944 KB
testcase_17 AC 135 ms
53,996 KB
testcase_18 AC 135 ms
53,932 KB
testcase_19 AC 130 ms
54,188 KB
testcase_20 AC 111 ms
54,136 KB
testcase_21 AC 128 ms
53,840 KB
testcase_22 AC 133 ms
54,056 KB
testcase_23 AC 129 ms
54,032 KB
testcase_24 AC 128 ms
53,880 KB
testcase_25 AC 114 ms
52,956 KB
testcase_26 AC 126 ms
54,060 KB
testcase_27 AC 129 ms
53,932 KB
testcase_28 AC 129 ms
54,208 KB
testcase_29 AC 128 ms
54,076 KB
testcase_30 AC 125 ms
53,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		HashMap<Integer, Integer> map = new HashMap<>();
		for (int i = 2; i <= Math.sqrt(n); i++) {
		    while (n % i == 0) {
		        map.put(i, map.getOrDefault(i, 0) + 1);
		        n /= i;
		    }
		}
		if (n > 1) {
		    map.put(n, map.getOrDefault(n, 0) + 1);
		}
		int ans = 0;
		for (int x : map.values()) {
		    ans ^= x;
		}
		if (ans == 0) {
		    System.out.println("Bob");
		} else {
		    System.out.println("Alice");
		}
	}
}

0