結果

問題 No.2 素因数ゲーム
ユーザー mastersatoshimastersatoshi
提出日時 2015-08-01 08:59:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 738 bytes
コンパイル時間 2,236 ms
コンパイル使用メモリ 75,248 KB
実行使用メモリ 50,444 KB
最終ジャッジ日時 2024-07-18 00:21:30
合計ジャッジ時間 4,934 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
37,232 KB
testcase_01 AC 57 ms
37,092 KB
testcase_02 AC 56 ms
36,448 KB
testcase_03 AC 57 ms
36,596 KB
testcase_04 AC 57 ms
36,820 KB
testcase_05 AC 57 ms
36,448 KB
testcase_06 AC 57 ms
36,600 KB
testcase_07 AC 58 ms
36,472 KB
testcase_08 WA -
testcase_09 AC 60 ms
36,856 KB
testcase_10 AC 57 ms
36,580 KB
testcase_11 AC 58 ms
36,688 KB
testcase_12 AC 58 ms
36,832 KB
testcase_13 AC 57 ms
36,808 KB
testcase_14 AC 56 ms
36,588 KB
testcase_15 AC 56 ms
36,788 KB
testcase_16 AC 56 ms
37,076 KB
testcase_17 AC 57 ms
36,672 KB
testcase_18 AC 56 ms
36,808 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 57 ms
36,392 KB
testcase_24 AC 58 ms
36,452 KB
testcase_25 WA -
testcase_26 AC 57 ms
37,076 KB
testcase_27 AC 58 ms
36,852 KB
testcase_28 AC 56 ms
36,844 KB
testcase_29 AC 57 ms
37,120 KB
testcase_30 AC 58 ms
36,340 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 (z == 0) {
            System.out.println("Bob");
        } else {
            System.out.println("Alice");
        }
    }
}
0