結果

問題 No.2 素因数ゲーム
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-04-12 16:45:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,705 ms / 5,000 ms
コード長 1,272 bytes
コンパイル時間 3,330 ms
コンパイル使用メモリ 78,576 KB
実行使用メモリ 140,976 KB
最終ジャッジ日時 2024-06-07 23:55:01
合計ジャッジ時間 28,495 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,844 KB
testcase_01 AC 120 ms
41,164 KB
testcase_02 AC 111 ms
40,520 KB
testcase_03 AC 118 ms
41,292 KB
testcase_04 AC 106 ms
40,268 KB
testcase_05 AC 117 ms
40,600 KB
testcase_06 AC 169 ms
54,312 KB
testcase_07 AC 210 ms
56,516 KB
testcase_08 AC 248 ms
54,680 KB
testcase_09 AC 284 ms
140,976 KB
testcase_10 AC 1,502 ms
126,140 KB
testcase_11 AC 656 ms
80,832 KB
testcase_12 AC 232 ms
80,916 KB
testcase_13 AC 474 ms
122,064 KB
testcase_14 AC 169 ms
47,520 KB
testcase_15 AC 335 ms
65,472 KB
testcase_16 AC 1,020 ms
99,492 KB
testcase_17 AC 1,874 ms
128,112 KB
testcase_18 AC 1,353 ms
133,544 KB
testcase_19 AC 1,343 ms
95,632 KB
testcase_20 AC 1,832 ms
113,320 KB
testcase_21 AC 2,705 ms
138,084 KB
testcase_22 AC 2,198 ms
130,364 KB
testcase_23 AC 646 ms
83,652 KB
testcase_24 AC 1,811 ms
134,456 KB
testcase_25 AC 1,618 ms
109,884 KB
testcase_26 AC 608 ms
90,816 KB
testcase_27 AC 289 ms
67,880 KB
testcase_28 AC 565 ms
97,200 KB
testcase_29 AC 442 ms
87,368 KB
testcase_30 AC 634 ms
84,084 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 x = n, ans = 0;
        boolean[] isPrime = new boolean[n+1];
        fill(isPrime,true);
        isPrime[0] = isPrime[1] = false;
        for (int i=2; i<=n; i++) {
            if (isPrime[i]) {
                int cnt = 0;
                while (x%i == 0 && x > 1) {
                    x /= i;
                    cnt++;
                }
                ans ^= cnt;
                if (x == 1) break;
                for (int j=i+i; j<=n; j+=i) {
                    isPrime[j] = false;
                }
            }
        }
        out.println(ans!=0?"Alice":"Bob");
    }

    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