結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,940 KB
testcase_01 AC 138 ms
54,368 KB
testcase_02 AC 140 ms
53,968 KB
testcase_03 AC 143 ms
54,020 KB
testcase_04 AC 140 ms
54,196 KB
testcase_05 AC 141 ms
53,964 KB
testcase_06 AC 141 ms
54,480 KB
testcase_07 AC 140 ms
54,088 KB
testcase_08 AC 237 ms
73,644 KB
testcase_09 AC 137 ms
54,036 KB
testcase_10 AC 145 ms
54,000 KB
testcase_11 AC 133 ms
52,956 KB
testcase_12 AC 138 ms
53,848 KB
testcase_13 AC 142 ms
54,124 KB
testcase_14 AC 145 ms
54,204 KB
testcase_15 AC 144 ms
54,052 KB
testcase_16 AC 145 ms
54,028 KB
testcase_17 AC 169 ms
56,596 KB
testcase_18 AC 143 ms
54,176 KB
testcase_19 MLE -
testcase_20 AC 1,643 ms
366,028 KB
testcase_21 MLE -
testcase_22 AC 243 ms
76,016 KB
testcase_23 AC 149 ms
54,008 KB
testcase_24 AC 148 ms
54,188 KB
testcase_25 AC 232 ms
75,396 KB
testcase_26 AC 136 ms
54,048 KB
testcase_27 AC 137 ms
54,008 KB
testcase_28 AC 135 ms
54,124 KB
testcase_29 AC 138 ms
53,940 KB
testcase_30 AC 145 ms
53,956 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;
        }

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

    static ArrayList<Integer> primeDecomposition(int n) {
        ArrayList<Integer> res = new ArrayList<>();
        if (n == 1) res.add(1);
        else {
            for (int i=2; i<=n; i++) {
                int cnt = 0;
                while (n%i == 0) {
                    cnt++; n /= i;
                }
                res.add(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