結果

問題 No.103 素因数ゲーム リターンズ
ユーザー uafr_csuafr_cs
提出日時 2015-09-11 17:35:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 178 ms / 5,000 ms
コード長 1,437 bytes
コンパイル時間 2,903 ms
コンパイル使用メモリ 79,440 KB
実行使用メモリ 42,352 KB
最終ジャッジ日時 2024-07-19 05:17:25
合計ジャッジ時間 7,329 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,180 KB
testcase_01 AC 121 ms
40,448 KB
testcase_02 AC 132 ms
41,248 KB
testcase_03 AC 134 ms
41,456 KB
testcase_04 AC 121 ms
40,444 KB
testcase_05 AC 124 ms
40,132 KB
testcase_06 AC 133 ms
41,392 KB
testcase_07 AC 131 ms
41,420 KB
testcase_08 AC 123 ms
40,248 KB
testcase_09 AC 124 ms
40,548 KB
testcase_10 AC 132 ms
41,472 KB
testcase_11 AC 139 ms
41,236 KB
testcase_12 AC 173 ms
42,132 KB
testcase_13 AC 146 ms
41,684 KB
testcase_14 AC 174 ms
42,080 KB
testcase_15 AC 170 ms
42,044 KB
testcase_16 AC 140 ms
41,364 KB
testcase_17 AC 169 ms
42,124 KB
testcase_18 AC 131 ms
40,484 KB
testcase_19 AC 178 ms
42,352 KB
testcase_20 AC 144 ms
41,220 KB
testcase_21 AC 167 ms
41,908 KB
testcase_22 AC 144 ms
41,372 KB
testcase_23 AC 146 ms
41,328 KB
testcase_24 AC 141 ms
41,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;
import java.util.TreeSet;

public class Main {

	public static int grundy(int n, LinkedList<Integer> primes, int[] memo){
		if(memo[n] >= 0){ return memo[n]; }
		if(n == 1){ return memo[n] = 0; }
		
		TreeSet<Integer> set = new TreeSet<Integer>();
		
		for(final int prime : primes){
			if(n < prime){ break; }
			
			if(n % prime == 0){
				set.add(grundy(n / prime, primes, memo));
				
				if((n / prime) % prime == 0){
					set.add(grundy(n / (prime * prime), primes, memo));
				}
			}
		}
		
		for(int i = 0; ; i++){
			if(!set.contains(i)){
				return memo[n] = i;
			}
		}
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		final int MAX = 10000;
		int[] memo = new int[MAX + 1];
		Arrays.fill(memo, -1);
		
		LinkedList<Integer> primes = new LinkedList<Integer>();
		boolean[] is_prime = new boolean[MAX + 1];
		Arrays.fill(is_prime, true);
		is_prime[0] = is_prime[1] = false;
		
		for(int i = 2; i <= MAX; i++){
			if(is_prime[i]){
				primes.add(i);
				
				for(int j = i * 2; j <= MAX; j += i){
					is_prime[j] = false;
				}
			}
		}
		
		int grundy_number = 0;
		for(int i = 0; i < N; i++){
			grundy_number ^= grundy(sc.nextInt(), primes, memo);
		}
		
		System.out.println(grundy_number == 0 ? "Bob" : "Alice");
		
	}

}
0