結果

問題 No.2 素因数ゲーム
ユーザー yuki2006yuki2006
提出日時 2014-10-01 19:41:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 539 ms / 5,000 ms
コード長 577 bytes
コンパイル時間 3,145 ms
コンパイル使用メモリ 72,400 KB
実行使用メモリ 56,392 KB
最終ジャッジ日時 2023-08-27 03:27:44
合計ジャッジ時間 9,420 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
55,900 KB
testcase_01 AC 121 ms
56,016 KB
testcase_02 AC 120 ms
56,184 KB
testcase_03 AC 120 ms
55,752 KB
testcase_04 AC 121 ms
55,844 KB
testcase_05 AC 119 ms
55,844 KB
testcase_06 AC 120 ms
55,812 KB
testcase_07 AC 122 ms
56,128 KB
testcase_08 AC 134 ms
55,908 KB
testcase_09 AC 121 ms
56,188 KB
testcase_10 AC 121 ms
55,784 KB
testcase_11 AC 122 ms
56,136 KB
testcase_12 AC 120 ms
55,980 KB
testcase_13 AC 121 ms
55,668 KB
testcase_14 AC 123 ms
55,988 KB
testcase_15 AC 124 ms
55,544 KB
testcase_16 AC 119 ms
56,236 KB
testcase_17 AC 126 ms
56,016 KB
testcase_18 AC 122 ms
55,504 KB
testcase_19 AC 355 ms
55,924 KB
testcase_20 AC 277 ms
55,896 KB
testcase_21 AC 539 ms
55,824 KB
testcase_22 AC 135 ms
55,836 KB
testcase_23 AC 121 ms
56,144 KB
testcase_24 AC 121 ms
55,812 KB
testcase_25 AC 132 ms
55,968 KB
testcase_26 AC 123 ms
55,968 KB
testcase_27 AC 124 ms
55,596 KB
testcase_28 AC 122 ms
56,184 KB
testcase_29 AC 120 ms
56,392 KB
testcase_30 AC 123 ms
56,012 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