結果

問題 No.103 素因数ゲーム リターンズ
ユーザー GrenacheGrenache
提出日時 2016-05-19 19:51:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 700 bytes
コンパイル時間 3,992 ms
コンパイル使用メモリ 74,456 KB
実行使用メモリ 54,180 KB
最終ジャッジ日時 2024-10-06 10:20:44
合計ジャッジ時間 7,658 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,924 KB
testcase_01 AC 130 ms
54,180 KB
testcase_02 AC 129 ms
53,712 KB
testcase_03 AC 135 ms
53,892 KB
testcase_04 AC 130 ms
53,820 KB
testcase_05 AC 128 ms
53,760 KB
testcase_06 AC 129 ms
54,036 KB
testcase_07 AC 124 ms
54,112 KB
testcase_08 AC 122 ms
53,736 KB
testcase_09 AC 122 ms
53,964 KB
testcase_10 AC 126 ms
53,896 KB
testcase_11 AC 126 ms
53,780 KB
testcase_12 AC 135 ms
53,852 KB
testcase_13 AC 132 ms
54,076 KB
testcase_14 AC 141 ms
54,156 KB
testcase_15 AC 132 ms
53,096 KB
testcase_16 AC 130 ms
54,124 KB
testcase_17 AC 139 ms
53,888 KB
testcase_18 AC 131 ms
53,836 KB
testcase_19 AC 135 ms
53,724 KB
testcase_20 AC 135 ms
53,884 KB
testcase_21 AC 133 ms
54,052 KB
testcase_22 AC 130 ms
53,732 KB
testcase_23 AC 132 ms
53,876 KB
testcase_24 AC 132 ms
54,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;


public class Main_yukicoder103 {

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

        int n = sc.nextInt();

        int ret = 0;
        for (int i = 0; i < n; i++) {
        	int m = sc.nextInt();
        	int tmp = m;
        	for (int j = 2; j * j <= m; j++) {
        		int cnt = 0;
        		while (tmp % j == 0) {
        			cnt++;
        			tmp /= j;
        		}

        		ret ^= cnt % 3;
        	}
        	if (tmp != 1) {
        		ret ^= 1;
        	}
        }

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

        sc.close();
    }
}
0