結果

問題 No.2 素因数ゲーム
ユーザー GrenacheGrenache
提出日時 2016-03-05 10:34:34
言語 Java
(openjdk 23)
結果
AC  
実行時間 156 ms / 5,000 ms
コード長 1,065 bytes
コンパイル時間 4,664 ms
コンパイル使用メモリ 80,152 KB
実行使用メモリ 41,304 KB
最終ジャッジ日時 2024-12-26 12:21:59
合計ジャッジ時間 10,090 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
41,048 KB
testcase_01 AC 146 ms
41,248 KB
testcase_02 AC 129 ms
40,924 KB
testcase_03 AC 126 ms
41,076 KB
testcase_04 AC 117 ms
39,904 KB
testcase_05 AC 132 ms
40,756 KB
testcase_06 AC 122 ms
40,124 KB
testcase_07 AC 128 ms
41,228 KB
testcase_08 AC 132 ms
40,852 KB
testcase_09 AC 128 ms
40,836 KB
testcase_10 AC 126 ms
40,960 KB
testcase_11 AC 131 ms
41,244 KB
testcase_12 AC 138 ms
41,176 KB
testcase_13 AC 146 ms
41,124 KB
testcase_14 AC 136 ms
40,968 KB
testcase_15 AC 144 ms
41,136 KB
testcase_16 AC 123 ms
40,240 KB
testcase_17 AC 130 ms
40,848 KB
testcase_18 AC 131 ms
41,164 KB
testcase_19 AC 122 ms
39,880 KB
testcase_20 AC 128 ms
40,872 KB
testcase_21 AC 129 ms
41,304 KB
testcase_22 AC 136 ms
41,156 KB
testcase_23 AC 134 ms
41,088 KB
testcase_24 AC 127 ms
41,228 KB
testcase_25 AC 130 ms
41,116 KB
testcase_26 AC 131 ms
41,056 KB
testcase_27 AC 132 ms
41,020 KB
testcase_28 AC 113 ms
40,140 KB
testcase_29 AC 134 ms
41,112 KB
testcase_30 AC 133 ms
41,072 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