結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,856 KB
testcase_01 AC 49 ms
36,648 KB
testcase_02 AC 47 ms
36,916 KB
testcase_03 AC 48 ms
36,520 KB
testcase_04 AC 47 ms
37,060 KB
testcase_05 AC 48 ms
37,052 KB
testcase_06 AC 47 ms
36,596 KB
testcase_07 AC 48 ms
37,000 KB
testcase_08 AC 47 ms
36,788 KB
testcase_09 AC 50 ms
36,864 KB
testcase_10 AC 48 ms
36,656 KB
testcase_11 AC 48 ms
36,888 KB
testcase_12 AC 47 ms
36,512 KB
testcase_13 AC 47 ms
36,792 KB
testcase_14 AC 47 ms
36,640 KB
testcase_15 AC 46 ms
36,760 KB
testcase_16 AC 48 ms
36,856 KB
testcase_17 AC 50 ms
36,748 KB
testcase_18 AC 49 ms
36,844 KB
testcase_19 AC 48 ms
36,808 KB
testcase_20 AC 47 ms
36,900 KB
testcase_21 AC 48 ms
37,028 KB
testcase_22 AC 48 ms
36,832 KB
testcase_23 AC 49 ms
36,504 KB
testcase_24 AC 47 ms
36,888 KB
testcase_25 AC 49 ms
36,596 KB
testcase_26 AC 50 ms
36,544 KB
testcase_27 AC 48 ms
36,648 KB
testcase_28 AC 48 ms
36,836 KB
testcase_29 AC 47 ms
36,736 KB
testcase_30 AC 47 ms
36,776 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 <= 10000; 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