結果

問題 No.2 素因数ゲーム
ユーザー uafr_csuafr_cs
提出日時 2015-06-03 03:25:47
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 427 bytes
コンパイル時間 1,790 ms
コンパイル使用メモリ 74,844 KB
実行使用メモリ 55,860 KB
最終ジャッジ日時 2024-07-06 13:52:16
合計ジャッジ時間 5,805 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
52,964 KB
testcase_01 AC 104 ms
53,952 KB
testcase_02 AC 104 ms
53,860 KB
testcase_03 AC 93 ms
52,824 KB
testcase_04 AC 105 ms
53,896 KB
testcase_05 AC 95 ms
52,864 KB
testcase_06 AC 106 ms
53,748 KB
testcase_07 AC 106 ms
53,852 KB
testcase_08 WA -
testcase_09 AC 108 ms
53,840 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 97 ms
52,852 KB
testcase_13 AC 92 ms
52,560 KB
testcase_14 AC 94 ms
52,680 KB
testcase_15 AC 98 ms
52,888 KB
testcase_16 WA -
testcase_17 AC 103 ms
53,956 KB
testcase_18 AC 95 ms
53,020 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 103 ms
53,892 KB
testcase_27 AC 105 ms
53,900 KB
testcase_28 AC 104 ms
54,136 KB
testcase_29 AC 108 ms
53,964 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		long N = sc.nextLong();
		
		int xor = 0;
		for(long i = 2; i <= 10000; i++){
			int count = 0;
			
			while(N % i == 0){
				N /= i;
				count++;
			}
			
			xor ^= count;
		}
		
		System.out.println(xor == 0 ? "Bob" : "Alice");
		
	}
	
}
0