結果

問題 No.2 素因数ゲーム
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-08-13 02:57:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 1,699 bytes
コンパイル時間 3,801 ms
コンパイル使用メモリ 81,520 KB
実行使用メモリ 41,844 KB
最終ジャッジ日時 2024-06-08 00:10:55
合計ジャッジ時間 8,756 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,356 KB
testcase_01 AC 123 ms
41,336 KB
testcase_02 AC 121 ms
41,164 KB
testcase_03 AC 109 ms
40,296 KB
testcase_04 AC 122 ms
41,788 KB
testcase_05 AC 129 ms
41,252 KB
testcase_06 AC 135 ms
41,688 KB
testcase_07 AC 130 ms
41,280 KB
testcase_08 AC 133 ms
41,412 KB
testcase_09 AC 121 ms
40,348 KB
testcase_10 AC 119 ms
40,348 KB
testcase_11 AC 127 ms
41,384 KB
testcase_12 AC 122 ms
41,364 KB
testcase_13 AC 118 ms
40,336 KB
testcase_14 AC 115 ms
40,532 KB
testcase_15 AC 130 ms
41,792 KB
testcase_16 AC 132 ms
41,424 KB
testcase_17 AC 128 ms
41,556 KB
testcase_18 AC 118 ms
40,492 KB
testcase_19 AC 129 ms
41,284 KB
testcase_20 AC 131 ms
41,404 KB
testcase_21 AC 129 ms
41,632 KB
testcase_22 AC 120 ms
40,648 KB
testcase_23 AC 126 ms
41,400 KB
testcase_24 AC 125 ms
41,588 KB
testcase_25 AC 132 ms
41,340 KB
testcase_26 AC 129 ms
41,648 KB
testcase_27 AC 127 ms
41,548 KB
testcase_28 AC 126 ms
41,844 KB
testcase_29 AC 131 ms
41,524 KB
testcase_30 AC 124 ms
41,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.awt.geom.*;
import java.math.*;

public class No0002 {
	
	static final Scanner in = new Scanner(System.in);
	static final PrintWriter out = new PrintWriter(System.out,false);

	static void solve() {
		int n = in.nextInt();
		ArrayList<int[]> f = requirePrimeFactor(n);
		//trace(f.toArray());
		int x = 0;
		for (int[] y : f) {
			x ^= y[1];
		}
		out.println(x != 0 ? "Alice" : "Bob");
	}

	public static ArrayList<int[]> requirePrimeFactor(int n) {
		if (n < 2) return null;
		ArrayList<int[]> ret = new ArrayList<int[]>();
		ArrayList<Integer> primes = createPrimeList(0,n+1);
		for (int p : primes) {
			int exp = 0;
			while (n%p == 0) {
				n /= p;
				exp++;
			}
			if (exp > 0) ret.add(new int[]{p,exp});
		}
		if (n > 1) ret.add(new int[]{n,1});
		return ret;
	}

	public static ArrayList<Integer> createPrimeList(int offset, int n) {
		if (n < 2) return null;
		ArrayList<Integer> ret = new ArrayList<Integer>();
		BitSet isPrimeBit = createIsPrimeBit(offset,(int)(Math.sqrt(n)+0.5));
		int p = 1;
		while ((p = isPrimeBit.nextSetBit(p+1)) >= 0) {
			ret.add(p);
		}
		return ret;
	}

	public static BitSet createIsPrimeBit(int offset, int n) {
		if (n < 2) return null;
		BitSet ret = new BitSet();
		ret.flip(2,n);
		for (int i=2; i*i<n; i++) {
			if (!ret.get(i)) continue;
			for (int j=i+i; j<n; j+=i) ret.flip(j);
		}
		return ret;
	}

	public static void main(String[] args) {
		long start = System.currentTimeMillis();

		solve();
		out.flush();

		long end = System.currentTimeMillis();
		//trace(end-start + "ms");
		in.close();
		out.close();
	}

	static void trace(Object... o) { System.out.println(Arrays.deepToString(o));}
}
0