結果

問題 No.2 素因数ゲーム
ユーザー yuki2006yuki2006
提出日時 2014-10-01 19:41:31
言語 Java
(openjdk 23)
結果
AC  
実行時間 578 ms / 5,000 ms
コード長 577 bytes
コンパイル時間 3,583 ms
コンパイル使用メモリ 75,124 KB
実行使用メモリ 41,424 KB
最終ジャッジ日時 2024-12-26 10:35:52
合計ジャッジ時間 10,052 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
39,916 KB
testcase_01 AC 129 ms
41,040 KB
testcase_02 AC 129 ms
40,812 KB
testcase_03 AC 128 ms
41,132 KB
testcase_04 AC 128 ms
41,216 KB
testcase_05 AC 136 ms
40,944 KB
testcase_06 AC 128 ms
40,668 KB
testcase_07 AC 132 ms
41,196 KB
testcase_08 AC 147 ms
41,088 KB
testcase_09 AC 131 ms
40,944 KB
testcase_10 AC 136 ms
41,032 KB
testcase_11 AC 135 ms
41,012 KB
testcase_12 AC 117 ms
39,640 KB
testcase_13 AC 116 ms
40,048 KB
testcase_14 AC 126 ms
41,040 KB
testcase_15 AC 130 ms
40,672 KB
testcase_16 AC 125 ms
40,956 KB
testcase_17 AC 129 ms
40,884 KB
testcase_18 AC 130 ms
41,020 KB
testcase_19 AC 376 ms
40,992 KB
testcase_20 AC 322 ms
41,024 KB
testcase_21 AC 578 ms
41,296 KB
testcase_22 AC 150 ms
40,824 KB
testcase_23 AC 120 ms
40,228 KB
testcase_24 AC 136 ms
41,424 KB
testcase_25 AC 129 ms
40,272 KB
testcase_26 AC 137 ms
40,960 KB
testcase_27 AC 123 ms
40,300 KB
testcase_28 AC 128 ms
40,896 KB
testcase_29 AC 139 ms
41,124 KB
testcase_30 AC 138 ms
40,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

public class Yuki002 {

    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);

        int N = scanner.nextInt();

        int ans=0;
        for (int k = 2; N > 1; k++) {
            int count=0;
            while (N%k==0){
                count++;
                N/=k;
            }
            ans^=count;
        }
        if (ans>0){
            System.out.println("Alice");
        }else{
            System.out.println("Bob");

        }


    }
}
0