結果

問題 No.2 素因数ゲーム
ユーザー Amanita2016Amanita2016
提出日時 2017-09-14 08:52:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 797 bytes
コンパイル時間 3,090 ms
コンパイル使用メモリ 74,832 KB
実行使用メモリ 37,236 KB
最終ジャッジ日時 2024-06-08 00:44:36
合計ジャッジ時間 5,391 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,796 KB
testcase_01 AC 49 ms
36,660 KB
testcase_02 AC 47 ms
36,680 KB
testcase_03 AC 49 ms
36,916 KB
testcase_04 AC 49 ms
37,036 KB
testcase_05 AC 51 ms
37,080 KB
testcase_06 AC 47 ms
37,048 KB
testcase_07 AC 49 ms
37,236 KB
testcase_08 AC 48 ms
36,884 KB
testcase_09 AC 49 ms
36,800 KB
testcase_10 AC 48 ms
37,024 KB
testcase_11 AC 46 ms
37,040 KB
testcase_12 AC 48 ms
37,040 KB
testcase_13 AC 53 ms
36,556 KB
testcase_14 AC 50 ms
36,904 KB
testcase_15 AC 48 ms
37,140 KB
testcase_16 AC 48 ms
37,200 KB
testcase_17 AC 48 ms
37,044 KB
testcase_18 AC 48 ms
36,804 KB
testcase_19 AC 48 ms
36,516 KB
testcase_20 AC 49 ms
36,800 KB
testcase_21 AC 49 ms
36,876 KB
testcase_22 AC 49 ms
36,924 KB
testcase_23 AC 47 ms
36,524 KB
testcase_24 AC 46 ms
36,784 KB
testcase_25 AC 47 ms
37,052 KB
testcase_26 AC 46 ms
36,904 KB
testcase_27 AC 48 ms
36,760 KB
testcase_28 AC 47 ms
37,236 KB
testcase_29 AC 49 ms
37,068 KB
testcase_30 AC 48 ms
36,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class PrimeFactorsGame {

	public static void main(String[] args) {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int num = 0;
		try {
			num = Integer.parseInt(br.readLine());
		}catch (IOException e){}
		double sqr = Math.sqrt(num);
		int xor = 0;
		int cnt = 0;
		while((num & 1) == 0){
			cnt++;
			num /= 2;
		}
		xor ^= cnt;
		for(int i = 3 ; i <= sqr ; i += 2){
			if((num % i) == 0){
				cnt = 0;
				do{
					num /= i;
					cnt++;
				}while((num % i) == 0);
				xor ^= cnt;
			}
		}
		if(num != 1){
			xor ^= 1;
		}
		String disp = (xor == 0) ? "Bob" : "Alice";
		System.out.println(disp);
	}
}
0