結果

問題 No.2 素因数ゲーム
ユーザー kyawashellkyawashell
提出日時 2017-12-08 11:53:52
言語 Java
(openjdk 23)
結果
AC  
実行時間 3,089 ms / 5,000 ms
コード長 955 bytes
コンパイル時間 4,211 ms
コンパイル使用メモリ 77,828 KB
実行使用メモリ 340,568 KB
最終ジャッジ日時 2024-12-26 13:27:09
合計ジャッジ時間 50,622 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 168 ms
41,388 KB
testcase_01 AC 162 ms
40,876 KB
testcase_02 AC 161 ms
40,912 KB
testcase_03 AC 162 ms
41,196 KB
testcase_04 AC 160 ms
41,108 KB
testcase_05 AC 199 ms
41,736 KB
testcase_06 AC 417 ms
74,076 KB
testcase_07 AC 452 ms
81,968 KB
testcase_08 AC 435 ms
79,520 KB
testcase_09 AC 3,089 ms
340,568 KB
testcase_10 AC 2,674 ms
305,028 KB
testcase_11 AC 1,159 ms
152,976 KB
testcase_12 AC 1,185 ms
152,700 KB
testcase_13 AC 2,544 ms
286,740 KB
testcase_14 AC 304 ms
61,684 KB
testcase_15 AC 723 ms
111,244 KB
testcase_16 AC 1,887 ms
228,588 KB
testcase_17 AC 2,755 ms
309,500 KB
testcase_18 AC 2,974 ms
325,364 KB
testcase_19 AC 1,770 ms
218,356 KB
testcase_20 AC 2,352 ms
270,900 KB
testcase_21 AC 3,026 ms
333,872 KB
testcase_22 AC 2,816 ms
314,828 KB
testcase_23 AC 1,186 ms
155,904 KB
testcase_24 AC 2,931 ms
325,836 KB
testcase_25 AC 1,947 ms
215,352 KB
testcase_26 AC 1,640 ms
196,900 KB
testcase_27 AC 791 ms
113,424 KB
testcase_28 AC 1,827 ms
223,016 KB
testcase_29 AC 1,535 ms
191,456 KB
testcase_30 AC 1,235 ms
157,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main{
	static void gethurui(boolean hurui[],int n){
		hurui[0] = hurui[1] = false;
		for(int i = 2;i <= n;i++)
			hurui[i] = true;
		for(int i = 2;i <= (int)(Math.sqrt(n) + 0.1);i++){
			if(!hurui[i])
				continue;
			for(int j = i * 2;j <= n;j += i){
				hurui[j] = false;
			}
		}
	}
	public static void main(String args[]) {
		Scanner scan = new Scanner(System.in);
		int n = scan.nextInt();
		scan.close();
		boolean[] hurui = new boolean[n + 1];
		gethurui(hurui,n);

		ArrayList<Integer> ps = new ArrayList<Integer>();

		for(int i = 0;i <= n;i++){
			if(hurui[i])
				ps.add(i);
		}

		ArrayList<Integer> ms = new ArrayList<Integer>();

		int n2 = n;
		for(Integer p : ps){
			int c = 0;
			while(n % p == 0){
				c++;
				n /= p;
			}
			if(c > 0)
				ms.add(c);
		}

		int ans = 0;
		for(Integer m : ms){
			ans = (ans ^ m);
		}

		if(ans != 0)
			System.out.println("Alice");
		else
			System.out.println("Bob");
	}
}
0