結果

問題 No.2 素因数ゲーム
ユーザー mastersatoshimastersatoshi
提出日時 2015-08-01 08:50:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,082 ms / 5,000 ms
コード長 889 bytes
コンパイル時間 2,518 ms
コンパイル使用メモリ 75,236 KB
実行使用メモリ 37,852 KB
最終ジャッジ日時 2024-06-08 00:07:11
合計ジャッジ時間 6,529 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,064 KB
testcase_01 AC 51 ms
37,036 KB
testcase_02 AC 51 ms
36,908 KB
testcase_03 AC 51 ms
36,792 KB
testcase_04 AC 50 ms
37,008 KB
testcase_05 AC 49 ms
36,840 KB
testcase_06 AC 50 ms
36,664 KB
testcase_07 AC 50 ms
36,884 KB
testcase_08 AC 89 ms
37,628 KB
testcase_09 AC 51 ms
36,976 KB
testcase_10 AC 52 ms
36,912 KB
testcase_11 AC 52 ms
37,008 KB
testcase_12 AC 50 ms
36,744 KB
testcase_13 AC 50 ms
36,816 KB
testcase_14 AC 51 ms
36,908 KB
testcase_15 AC 51 ms
36,804 KB
testcase_16 AC 51 ms
36,824 KB
testcase_17 AC 66 ms
37,768 KB
testcase_18 AC 49 ms
37,032 KB
testcase_19 AC 625 ms
37,852 KB
testcase_20 AC 447 ms
37,832 KB
testcase_21 AC 1,082 ms
37,812 KB
testcase_22 AC 90 ms
37,572 KB
testcase_23 AC 51 ms
36,864 KB
testcase_24 AC 53 ms
36,544 KB
testcase_25 AC 86 ms
37,760 KB
testcase_26 AC 50 ms
37,084 KB
testcase_27 AC 51 ms
37,052 KB
testcase_28 AC 51 ms
36,876 KB
testcase_29 AC 50 ms
36,752 KB
testcase_30 AC 49 ms
36,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {

    public static void main(String[] args) throws Exception {

        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        long N = Long.parseLong(br.readLine());

        long z = Integer.MIN_VALUE;

        for (long i = 2; i <= N; i++) {
            int count = 0;
            while (true) {
                if (N % i == 0) {
                    N = N / i;

                    count++;
                } else {
                    if (z == Integer.MIN_VALUE) {
                        z = count;
                    } else {
                        z = z ^ count;
                    }
                    break;
                }
            }
        }

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