結果
問題 | No.103 素因数ゲーム リターンズ |
ユーザー | ぴろず |
提出日時 | 2014-12-21 12:17:21 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 401 ms / 5,000 ms |
コード長 | 2,337 bytes |
コンパイル時間 | 2,143 ms |
コンパイル使用メモリ | 84,256 KB |
実行使用メモリ | 57,256 KB |
最終ジャッジ日時 | 2024-06-12 03:00:07 |
合計ジャッジ時間 | 12,860 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 376 ms
57,256 KB |
testcase_01 | AC | 380 ms
57,180 KB |
testcase_02 | AC | 377 ms
57,208 KB |
testcase_03 | AC | 387 ms
56,996 KB |
testcase_04 | AC | 375 ms
56,900 KB |
testcase_05 | AC | 375 ms
57,032 KB |
testcase_06 | AC | 386 ms
56,848 KB |
testcase_07 | AC | 383 ms
56,992 KB |
testcase_08 | AC | 374 ms
57,116 KB |
testcase_09 | AC | 370 ms
56,980 KB |
testcase_10 | AC | 396 ms
57,012 KB |
testcase_11 | AC | 375 ms
57,020 KB |
testcase_12 | AC | 374 ms
56,828 KB |
testcase_13 | AC | 401 ms
57,048 KB |
testcase_14 | AC | 376 ms
57,116 KB |
testcase_15 | AC | 386 ms
57,132 KB |
testcase_16 | AC | 387 ms
57,080 KB |
testcase_17 | AC | 386 ms
57,088 KB |
testcase_18 | AC | 377 ms
57,048 KB |
testcase_19 | AC | 387 ms
56,980 KB |
testcase_20 | AC | 379 ms
56,968 KB |
testcase_21 | AC | 381 ms
56,952 KB |
testcase_22 | AC | 378 ms
57,072 KB |
testcase_23 | AC | 374 ms
57,096 KB |
testcase_24 | AC | 391 ms
57,068 KB |
ソースコード
package no002; import java.util.ArrayList; import java.util.Arrays; import java.util.HashSet; import java.util.PriorityQueue; import java.util.Scanner; public class Main { public static void main(String[] args) { ArrayList<Integer> primeList = Sieve.primeList(10000); int[] grundy = new int[10001]; Arrays.fill(grundy, -1); grundy[0] = grundy[1] = 0; for(int i=2;i<=10000;i++) { ArrayList<Sieve.Factor> factor = Sieve.primeFactor(primeList, i); HashSet<Integer> hs = new HashSet<>(); for(Sieve.Factor f:factor) { hs.add(grundy[i/f.base]); if (f.exp >= 2) { hs.add(grundy[i/f.base/f.base]); } } PriorityQueue<Integer> pq = new PriorityQueue<>(hs); for(int j=0;j<=10000;j++) { if (pq.isEmpty() || pq.poll() != j) { grundy[i] = j; break; } } } Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int ans = 0; for(int i=0;i<n;i++) { int m = sc.nextInt(); ans ^= grundy[m]; } if (ans == 0) { System.out.println("Bob"); }else{ System.out.println("Alice"); } } } class Sieve { public static boolean[] isPrimeArray(int max) { boolean[] isPrime = new boolean[max+1]; Arrays.fill(isPrime, true); isPrime[0] = isPrime[1] = false; for(int i=2;i*i<=max;i++) { if (isPrime[i]) { int j = i * 2; while(j<=max) { isPrime[j] = false; j += i; } } } return isPrime; } public static ArrayList<Integer> primeList(int max) { boolean[] isPrime = isPrimeArray(max); ArrayList<Integer> primeList = new ArrayList<>(); for(int i=2;i<=max;i++) { if (isPrime[i]) { primeList.add(i); } } return primeList; } public static ArrayList<Factor> primeFactor(ArrayList<Integer> primeList,long num) { ArrayList<Factor> ret = new ArrayList<Factor>(); for(int p:primeList) { int exp = 0; while(num % p == 0) { num /= p; exp++; } if (exp > 0) { ret.add(new Factor(p,exp)); } } if (num >= 2) { ret.add(new Factor((int) num,1)); } return ret; } public static ArrayList<Factor> primeFactor(long num) { return primeFactor(primeList((int) (Math.sqrt(num) + 0.5)), num); } public static class Factor { int base,exp; public Factor(int base,int exp) { this.base = base; this.exp = exp; } public String toString() { return base + "^" + exp; } } }