結果

問題 No.2 素因数ゲーム
ユーザー jp_stejp_ste
提出日時 2016-03-04 12:02:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 642 bytes
コンパイル時間 2,135 ms
コンパイル使用メモリ 74,192 KB
実行使用メモリ 54,348 KB
最終ジャッジ日時 2024-06-08 00:22:43
合計ジャッジ時間 7,470 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,280 KB
testcase_01 AC 130 ms
54,348 KB
testcase_02 AC 133 ms
53,992 KB
testcase_03 AC 129 ms
54,284 KB
testcase_04 AC 133 ms
53,988 KB
testcase_05 AC 131 ms
54,124 KB
testcase_06 AC 134 ms
54,044 KB
testcase_07 AC 134 ms
54,188 KB
testcase_08 AC 133 ms
54,104 KB
testcase_09 AC 134 ms
54,208 KB
testcase_10 AC 133 ms
53,884 KB
testcase_11 AC 132 ms
54,096 KB
testcase_12 AC 134 ms
54,068 KB
testcase_13 AC 131 ms
54,156 KB
testcase_14 AC 136 ms
54,036 KB
testcase_15 AC 133 ms
54,336 KB
testcase_16 AC 133 ms
54,196 KB
testcase_17 AC 137 ms
54,224 KB
testcase_18 AC 137 ms
54,172 KB
testcase_19 AC 134 ms
54,124 KB
testcase_20 AC 136 ms
54,116 KB
testcase_21 AC 132 ms
54,028 KB
testcase_22 AC 117 ms
52,992 KB
testcase_23 AC 132 ms
54,260 KB
testcase_24 AC 130 ms
53,860 KB
testcase_25 AC 130 ms
53,800 KB
testcase_26 AC 131 ms
53,868 KB
testcase_27 AC 132 ms
53,716 KB
testcase_28 AC 121 ms
53,076 KB
testcase_29 AC 134 ms
54,148 KB
testcase_30 AC 134 ms
53,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        try (Scanner scan = new Scanner(System.in)) {
            int N = scan.nextInt();
            int ans = 0;
            for(int i=2; i<=Math.sqrt(N); i++) {
                if(N % i == 0) {
                    int count = 0;
                    while(N % i == 0) {
                        N /= i;
                        count++;
                    }
                    ans ^= count;
                }
            }
            if(N > 1) ans ^= 1;
            
            System.out.println(ans==0? "Bob":"Alice");
        }        
    }
}
0