結果

問題 No.2 素因数ゲーム
ユーザー mastersatoshimastersatoshi
提出日時 2015-08-01 08:58:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 737 bytes
コンパイル時間 1,828 ms
コンパイル使用メモリ 74,792 KB
実行使用メモリ 51,996 KB
最終ジャッジ日時 2024-07-18 00:21:25
合計ジャッジ時間 4,244 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
50,380 KB
testcase_01 AC 50 ms
50,440 KB
testcase_02 AC 48 ms
50,336 KB
testcase_03 AC 48 ms
51,996 KB
testcase_04 AC 47 ms
50,292 KB
testcase_05 AC 47 ms
50,448 KB
testcase_06 AC 47 ms
50,420 KB
testcase_07 AC 47 ms
50,272 KB
testcase_08 WA -
testcase_09 AC 49 ms
50,356 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 49 ms
49,988 KB
testcase_13 AC 46 ms
50,052 KB
testcase_14 AC 47 ms
50,064 KB
testcase_15 AC 49 ms
50,028 KB
testcase_16 WA -
testcase_17 AC 47 ms
50,336 KB
testcase_18 AC 46 ms
50,292 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 49 ms
49,956 KB
testcase_27 AC 51 ms
50,288 KB
testcase_28 AC 54 ms
50,296 KB
testcase_29 AC 51 ms
50,336 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

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 (z == 0) {
            System.out.println("Bob");
        } else {
            System.out.println("Alice");
        }
    }
}
0