結果

問題 No.2 素因数ゲーム
ユーザー GrenacheGrenache
提出日時 2016-03-05 10:34:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 1,065 bytes
コンパイル時間 3,445 ms
コンパイル使用メモリ 77,620 KB
実行使用メモリ 54,488 KB
最終ジャッジ日時 2024-06-08 00:22:52
合計ジャッジ時間 8,658 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,100 KB
testcase_01 AC 131 ms
54,028 KB
testcase_02 AC 135 ms
54,088 KB
testcase_03 AC 135 ms
53,836 KB
testcase_04 AC 135 ms
54,488 KB
testcase_05 AC 135 ms
53,828 KB
testcase_06 AC 133 ms
53,900 KB
testcase_07 AC 117 ms
52,952 KB
testcase_08 AC 133 ms
54,232 KB
testcase_09 AC 136 ms
54,080 KB
testcase_10 AC 136 ms
54,248 KB
testcase_11 AC 135 ms
53,888 KB
testcase_12 AC 135 ms
53,852 KB
testcase_13 AC 137 ms
54,268 KB
testcase_14 AC 133 ms
53,952 KB
testcase_15 AC 135 ms
53,824 KB
testcase_16 AC 135 ms
53,856 KB
testcase_17 AC 134 ms
54,196 KB
testcase_18 AC 135 ms
54,208 KB
testcase_19 AC 134 ms
54,168 KB
testcase_20 AC 120 ms
52,992 KB
testcase_21 AC 135 ms
53,904 KB
testcase_22 AC 135 ms
54,192 KB
testcase_23 AC 136 ms
54,084 KB
testcase_24 AC 136 ms
54,188 KB
testcase_25 AC 133 ms
53,884 KB
testcase_26 AC 135 ms
53,992 KB
testcase_27 AC 136 ms
53,712 KB
testcase_28 AC 135 ms
53,868 KB
testcase_29 AC 137 ms
54,132 KB
testcase_30 AC 134 ms
54,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder2 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();

        Map<Integer, Integer> pf = primeFactorization(n);

        int ret = 0;
        for (int e : pf.values()) {
        	ret ^= e;
        }

        if (ret == 0) {
        	System.out.println("Bob");
        } else {
        	System.out.println("Alice");
        }

        sc.close();
    }

    private static Map<Integer, Integer> primeFactorization(int n) {
    	Map<Integer, Integer> hm = new HashMap<Integer, Integer>();

    	int tmp = n;
    	for (int j = 2; j * j <= n; j++) {
    		while (tmp % j == 0) {
    			if (hm.containsKey(j)) {
    				hm.put(j, hm.get(j) + 1);
    			} else {
    				hm.put(j, 1);
    			}
    			tmp /= j;
    		}
    	}
    	if (tmp != 1) {
    		if (hm.containsKey(tmp)) {
    			hm.put(tmp, hm.get(tmp) + 1);
    		} else {
    			hm.put(tmp, 1);
    		}
    	}

    	return hm;
    }
}
0