結果

問題 No.2 素因数ゲーム
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-08-12 18:54:01
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,203 bytes
コンパイル時間 3,588 ms
コンパイル使用メモリ 80,384 KB
実行使用メモリ 550,896 KB
最終ジャッジ日時 2024-07-18 06:59:36
合計ジャッジ時間 43,894 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,304 KB
testcase_01 AC 129 ms
41,528 KB
testcase_02 AC 129 ms
41,408 KB
testcase_03 AC 118 ms
41,452 KB
testcase_04 AC 118 ms
40,232 KB
testcase_05 AC 147 ms
41,876 KB
testcase_06 AC 288 ms
105,912 KB
testcase_07 AC 338 ms
115,608 KB
testcase_08 AC 295 ms
108,608 KB
testcase_09 RE -
testcase_10 AC 2,647 ms
478,764 KB
testcase_11 AC 1,069 ms
247,436 KB
testcase_12 AC 1,067 ms
247,072 KB
testcase_13 AC 2,439 ms
457,776 KB
testcase_14 AC 221 ms
79,120 KB
testcase_15 AC 599 ms
162,356 KB
testcase_16 AC 1,683 ms
340,324 KB
testcase_17 AC 2,633 ms
488,328 KB
testcase_18 MLE -
testcase_19 AC 1,567 ms
317,868 KB
testcase_20 AC 2,115 ms
410,156 KB
testcase_21 MLE -
testcase_22 AC 2,753 ms
500,076 KB
testcase_23 AC 1,194 ms
255,340 KB
testcase_24 MLE -
testcase_25 AC 2,112 ms
398,648 KB
testcase_26 AC 1,385 ms
292,712 KB
testcase_27 AC 633 ms
174,240 KB
testcase_28 AC 1,598 ms
327,000 KB
testcase_29 AC 1,281 ms
274,384 KB
testcase_30 AC 1,154 ms
259,300 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();
		int x = 0;
		int[] primes = sieveOfEratosthenes(n+1);
		int ptr = 0;
		while (n != 1) {
			int cnt = 0;
			while (n%primes[ptr] == 0) {
				n /= primes[ptr];
				cnt++;
			}
			x ^= cnt;
			ptr++;
		}

		out.println(x != 0 ? "Alice" : "Bob");
	}

	static int[] sieveOfEratosthenes(int n) {
		if (n < 2) return null;
		boolean[] isPrime = new boolean[n];
		Arrays.fill(isPrime,true);
		int[] res = new int[n];
		int ptr = 0;
		isPrime[0] = isPrime[1] = false;
		for (int i=2; i<n; i++) {
			if (isPrime[i]) {
				res[ptr++] = i;
				for (int j=i+i; j<n; j+=i) isPrime[j] = false;
			}
		}
		return Arrays.copyOfRange(res,0,ptr);
	}

	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