結果

問題 No.2 素因数ゲーム
ユーザー jp_stejp_ste
提出日時 2016-03-04 02:32:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 879 ms / 5,000 ms
コード長 970 bytes
コンパイル時間 1,819 ms
コンパイル使用メモリ 73,992 KB
実行使用メモリ 433,896 KB
最終ジャッジ日時 2024-06-08 00:24:19
合計ジャッジ時間 16,907 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
41,128 KB
testcase_01 AC 95 ms
39,872 KB
testcase_02 AC 105 ms
41,048 KB
testcase_03 AC 106 ms
40,880 KB
testcase_04 AC 95 ms
39,680 KB
testcase_05 AC 103 ms
40,388 KB
testcase_06 AC 194 ms
89,576 KB
testcase_07 AC 228 ms
98,012 KB
testcase_08 AC 241 ms
91,904 KB
testcase_09 AC 879 ms
433,896 KB
testcase_10 AC 750 ms
379,820 KB
testcase_11 AC 409 ms
202,724 KB
testcase_12 AC 405 ms
199,440 KB
testcase_13 AC 715 ms
362,824 KB
testcase_14 AC 173 ms
72,640 KB
testcase_15 AC 295 ms
136,788 KB
testcase_16 AC 533 ms
273,488 KB
testcase_17 AC 775 ms
386,808 KB
testcase_18 AC 836 ms
412,776 KB
testcase_19 AC 454 ms
254,260 KB
testcase_20 AC 654 ms
326,756 KB
testcase_21 AC 790 ms
424,820 KB
testcase_22 AC 794 ms
392,884 KB
testcase_23 AC 411 ms
204,536 KB
testcase_24 AC 811 ms
409,216 KB
testcase_25 AC 629 ms
314,976 KB
testcase_26 AC 458 ms
233,984 KB
testcase_27 AC 305 ms
142,128 KB
testcase_28 AC 505 ms
260,560 KB
testcase_29 AC 436 ms
220,544 KB
testcase_30 AC 419 ms
208,368 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 nums[] = new int[N+1];
            
            int n = N;
            for(int i=2; i<=N; i++) {
                while(n % i == 0) {
                    n /= i;
                    nums[i]++;
                }
            }
            if(n > 1) { 
                nums[n]++;
            }
            
            int ans = 0;
            for(int i=2; i<=N; i++) {
                if(nums[i] > 0) {
                    if(ans == 0) {
                        ans = nums[i];
                    } else {
                        ans ^= nums[i];
                    }
                }
            }
            if(ans != 0) {
                System.out.println("Alice");
            } else {
                System.out.println("Bob");
            }
        }        
    }
}
0