結果

問題 No.2 素因数ゲーム
ユーザー mastersatoshimastersatoshi
提出日時 2015-08-01 09:02:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 791 bytes
コンパイル時間 2,354 ms
コンパイル使用メモリ 74,268 KB
実行使用メモリ 37,108 KB
最終ジャッジ日時 2024-06-08 00:07:04
合計ジャッジ時間 4,758 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,040 KB
testcase_01 AC 53 ms
36,652 KB
testcase_02 AC 53 ms
36,880 KB
testcase_03 AC 53 ms
36,792 KB
testcase_04 AC 53 ms
36,856 KB
testcase_05 AC 54 ms
36,812 KB
testcase_06 AC 53 ms
36,812 KB
testcase_07 AC 55 ms
37,040 KB
testcase_08 AC 56 ms
36,780 KB
testcase_09 AC 55 ms
37,108 KB
testcase_10 AC 53 ms
36,680 KB
testcase_11 AC 55 ms
37,056 KB
testcase_12 AC 55 ms
36,860 KB
testcase_13 AC 54 ms
36,684 KB
testcase_14 AC 54 ms
36,788 KB
testcase_15 AC 54 ms
36,680 KB
testcase_16 AC 54 ms
37,048 KB
testcase_17 AC 54 ms
37,060 KB
testcase_18 AC 53 ms
36,940 KB
testcase_19 AC 52 ms
36,808 KB
testcase_20 AC 54 ms
36,904 KB
testcase_21 AC 54 ms
37,016 KB
testcase_22 AC 53 ms
37,060 KB
testcase_23 AC 53 ms
36,524 KB
testcase_24 AC 53 ms
37,044 KB
testcase_25 AC 54 ms
37,040 KB
testcase_26 AC 53 ms
36,812 KB
testcase_27 AC 54 ms
36,552 KB
testcase_28 AC 54 ms
36,980 KB
testcase_29 AC 54 ms
36,860 KB
testcase_30 AC 54 ms
36,800 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 = 0;

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

                    count++;
                } else {
                    z = z ^ count;
                    break;
                }
            }
        }

        if (N != 1) {
            z ^= 1;
        }

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