結果
問題 | No.103 素因数ゲーム リターンズ |
ユーザー | warashi |
提出日時 | 2015-02-11 02:18:51 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 895 ms / 5,000 ms |
コード長 | 1,274 bytes |
コンパイル時間 | 331 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 19,200 KB |
最終ジャッジ日時 | 2024-06-23 18:29:07 |
合計ジャッジ時間 | 3,545 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
10,880 KB |
testcase_01 | AC | 31 ms
10,880 KB |
testcase_02 | AC | 32 ms
11,008 KB |
testcase_03 | AC | 33 ms
10,880 KB |
testcase_04 | AC | 32 ms
10,880 KB |
testcase_05 | AC | 30 ms
11,008 KB |
testcase_06 | AC | 30 ms
10,880 KB |
testcase_07 | AC | 30 ms
11,008 KB |
testcase_08 | AC | 30 ms
11,008 KB |
testcase_09 | AC | 30 ms
10,880 KB |
testcase_10 | AC | 30 ms
11,008 KB |
testcase_11 | AC | 31 ms
10,880 KB |
testcase_12 | AC | 102 ms
12,032 KB |
testcase_13 | AC | 104 ms
11,904 KB |
testcase_14 | AC | 206 ms
13,184 KB |
testcase_15 | AC | 177 ms
12,928 KB |
testcase_16 | AC | 32 ms
11,008 KB |
testcase_17 | AC | 327 ms
14,464 KB |
testcase_18 | AC | 41 ms
11,136 KB |
testcase_19 | AC | 895 ms
19,200 KB |
testcase_20 | AC | 47 ms
11,136 KB |
testcase_21 | AC | 88 ms
11,904 KB |
testcase_22 | AC | 43 ms
11,008 KB |
testcase_23 | AC | 58 ms
11,392 KB |
testcase_24 | AC | 81 ms
11,520 KB |
ソースコード
#!/usr/bin/env python3 from collections import defaultdict from functools import lru_cache from itertools import count, takewhile def prime(): prime = [] def _isPrime(n): for d in takewhile(lambda x: x * x <= n, prime): if n % d == 0: return False return True for i in count(2): if _isPrime(i): prime.append(i) yield(i) @lru_cache(maxsize=None) def prime_factorization(n): factor = defaultdict(int) for p in takewhile(lambda x: x * x <= n, prime()): while n % p == 0: n //= p factor[p] += 1 if n > 1: factor[n] += 1 return factor @lru_cache(maxsize=None) def nim(nums): if sum(nums) == 0: True for i in range(len(nums)): for j in (2, 1): if nums[i] < j: continue tmp = list(nums) tmp[i] -= j tmp.sort(reverse=True) if nim(tuple(tmp)): return False return True N = int(input()) M = [int(x) for x in input().split()] init = [] for m in M: init.extend(prime_factorization(m).values()) init = [x % 3 for x in init] init.sort(reverse=True) if nim(tuple(init)): print("Bob") else: print("Alice")