結果

問題 No.2 素因数ゲーム
ユーザー yuki2006yuki2006
提出日時 2014-10-01 19:41:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 541 ms / 5,000 ms
コード長 577 bytes
コンパイル時間 3,533 ms
コンパイル使用メモリ 74,724 KB
実行使用メモリ 54,224 KB
最終ジャッジ日時 2024-06-07 23:24:17
合計ジャッジ時間 8,848 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
53,988 KB
testcase_01 AC 121 ms
54,204 KB
testcase_02 AC 124 ms
54,224 KB
testcase_03 AC 111 ms
53,764 KB
testcase_04 AC 122 ms
53,828 KB
testcase_05 AC 124 ms
54,116 KB
testcase_06 AC 123 ms
54,080 KB
testcase_07 AC 122 ms
54,212 KB
testcase_08 AC 129 ms
52,856 KB
testcase_09 AC 129 ms
41,088 KB
testcase_10 AC 129 ms
41,216 KB
testcase_11 AC 129 ms
40,972 KB
testcase_12 AC 128 ms
41,108 KB
testcase_13 AC 125 ms
40,940 KB
testcase_14 AC 121 ms
41,288 KB
testcase_15 AC 121 ms
41,024 KB
testcase_16 AC 127 ms
41,156 KB
testcase_17 AC 130 ms
41,020 KB
testcase_18 AC 126 ms
41,396 KB
testcase_19 AC 338 ms
41,400 KB
testcase_20 AC 280 ms
41,392 KB
testcase_21 AC 541 ms
41,200 KB
testcase_22 AC 138 ms
41,056 KB
testcase_23 AC 110 ms
41,600 KB
testcase_24 AC 123 ms
41,288 KB
testcase_25 AC 136 ms
41,388 KB
testcase_26 AC 128 ms
41,244 KB
testcase_27 AC 127 ms
40,996 KB
testcase_28 AC 124 ms
41,080 KB
testcase_29 AC 127 ms
41,260 KB
testcase_30 AC 128 ms
41,036 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