結果

問題 No.2 素因数ゲーム
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-04-12 17:12:53
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 1,248 bytes
コンパイル時間 3,768 ms
コンパイル使用メモリ 79,684 KB
実行使用メモリ 721,128 KB
最終ジャッジ日時 2024-07-04 14:00:27
合計ジャッジ時間 24,515 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
41,340 KB
testcase_01 AC 140 ms
41,932 KB
testcase_02 AC 142 ms
41,752 KB
testcase_03 AC 138 ms
41,132 KB
testcase_04 AC 138 ms
41,224 KB
testcase_05 AC 142 ms
41,492 KB
testcase_06 AC 142 ms
41,436 KB
testcase_07 AC 140 ms
41,476 KB
testcase_08 AC 570 ms
147,484 KB
testcase_09 AC 141 ms
41,108 KB
testcase_10 AC 146 ms
42,128 KB
testcase_11 AC 147 ms
42,272 KB
testcase_12 AC 138 ms
41,688 KB
testcase_13 AC 137 ms
41,576 KB
testcase_14 AC 145 ms
42,388 KB
testcase_15 AC 140 ms
41,472 KB
testcase_16 AC 143 ms
42,268 KB
testcase_17 AC 202 ms
55,076 KB
testcase_18 AC 141 ms
41,768 KB
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 AC 570 ms
146,624 KB
testcase_23 AC 144 ms
42,016 KB
testcase_24 AC 151 ms
43,412 KB
testcase_25 AC 399 ms
117,780 KB
testcase_26 AC 136 ms
41,376 KB
testcase_27 AC 136 ms
41,340 KB
testcase_28 AC 138 ms
41,492 KB
testcase_29 AC 135 ms
41,064 KB
testcase_30 AC 143 ms
41,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.2 素因数ゲーム

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No2 {
    
    static final Scanner in = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        int n = in.nextInt();
        int ans = 0;
        for (int[] x : primeDecomposition(n)) {
            ans ^= x[1];
        }

        out.println(ans!=0?"Alice":"Bob");
    }

    static ArrayList<int[]> primeDecomposition(int n) {
        ArrayList<int[]> res = new ArrayList<>();
        if (n == 1) res.add(new int[]{1,1});
        else {
            for (int i=2; i<=n; i++) {
                int cnt = 0;
                while (n%i == 0) {
                    cnt++; n /= i;
                }
                res.add(new int[]{i,cnt});
            }
        }
        return res;
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        in.close();
        out.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0