結果

問題 No.2 素因数ゲーム
ユーザー DAZYDAZY
提出日時 2017-05-15 23:26:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 652 ms / 5,000 ms
コード長 687 bytes
コンパイル時間 3,533 ms
コンパイル使用メモリ 74,848 KB
実行使用メモリ 41,708 KB
最終ジャッジ日時 2024-06-08 00:38:17
合計ジャッジ時間 9,167 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,120 KB
testcase_01 AC 123 ms
41,236 KB
testcase_02 AC 127 ms
41,188 KB
testcase_03 AC 124 ms
41,216 KB
testcase_04 AC 126 ms
41,220 KB
testcase_05 AC 127 ms
40,960 KB
testcase_06 AC 130 ms
41,416 KB
testcase_07 AC 126 ms
40,976 KB
testcase_08 AC 144 ms
41,216 KB
testcase_09 AC 129 ms
41,336 KB
testcase_10 AC 125 ms
41,164 KB
testcase_11 AC 126 ms
41,312 KB
testcase_12 AC 122 ms
41,204 KB
testcase_13 AC 129 ms
41,256 KB
testcase_14 AC 127 ms
41,396 KB
testcase_15 AC 118 ms
39,836 KB
testcase_16 AC 127 ms
40,936 KB
testcase_17 AC 132 ms
41,148 KB
testcase_18 AC 124 ms
41,116 KB
testcase_19 AC 419 ms
41,368 KB
testcase_20 AC 319 ms
41,708 KB
testcase_21 AC 652 ms
41,460 KB
testcase_22 AC 145 ms
41,348 KB
testcase_23 AC 124 ms
41,104 KB
testcase_24 AC 129 ms
41,240 KB
testcase_25 AC 140 ms
41,368 KB
testcase_26 AC 124 ms
41,348 KB
testcase_27 AC 125 ms
41,072 KB
testcase_28 AC 123 ms
41,240 KB
testcase_29 AC 125 ms
41,320 KB
testcase_30 AC 129 ms
41,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

        String ans = "Alice";
        long N = scan.nextLong();
        //xor:排他的論理和
        int xor = 0;
        int count = 0;
        long div = 3;

        while (N % 2 == 0) {
            N /= 2;
            count++;
        }
        xor ^= count;
        while (N != 1) {
            count = 0;
            while (N % div == 0) {
                N /= div;
                count++;
            }
            xor ^= count;
            div += 2;
        }
        if (xor == 0) ans = "Bob";

        System.out.print(ans);
    }
}
0