結果

問題 No.2 素因数ゲーム
ユーザー DAZYDAZY
提出日時 2017-05-15 21:52:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 871 bytes
コンパイル時間 3,963 ms
コンパイル使用メモリ 74,544 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2024-09-16 08:11:23
合計ジャッジ時間 10,520 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,332 KB
testcase_01 AC 136 ms
41,188 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 130 ms
41,064 KB
testcase_05 AC 134 ms
41,232 KB
testcase_06 AC 131 ms
41,368 KB
testcase_07 WA -
testcase_08 AC 153 ms
41,424 KB
testcase_09 AC 129 ms
41,316 KB
testcase_10 AC 129 ms
41,328 KB
testcase_11 AC 123 ms
41,320 KB
testcase_12 AC 131 ms
41,728 KB
testcase_13 AC 132 ms
41,448 KB
testcase_14 AC 132 ms
41,372 KB
testcase_15 AC 133 ms
41,628 KB
testcase_16 AC 123 ms
40,116 KB
testcase_17 AC 139 ms
41,728 KB
testcase_18 AC 132 ms
41,192 KB
testcase_19 AC 425 ms
41,472 KB
testcase_20 AC 331 ms
41,152 KB
testcase_21 AC 658 ms
41,228 KB
testcase_22 AC 149 ms
41,148 KB
testcase_23 AC 135 ms
41,300 KB
testcase_24 AC 133 ms
41,064 KB
testcase_25 AC 148 ms
41,536 KB
testcase_26 AC 132 ms
41,456 KB
testcase_27 AC 132 ms
41,444 KB
testcase_28 AC 121 ms
39,848 KB
testcase_29 AC 132 ms
41,496 KB
testcase_30 AC 132 ms
41,036 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();
        //count1:Nを構成する素因数の種類の数 count2:Nを構成する素因数の総数
        int count1 = 0;
        int count2 = 0;
        long div = 3;
        
        while (N % 2 == 0) {
            N /= 2;
            count2++;
        }
        if (count2 != 0) count1 = 1;
        while (N != 1) {
            if (N % div == 0) {
                count1++;
                do {
                    N /= div;
                    count2++;
                } while (N % div == 0);
            }
            div += 2;
        }
        if (count1 % 2 != 0) {}
        else if (count2 % 2 == 0) ans = "Bob";


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