結果
問題 |
No.103 素因数ゲーム リターンズ
|
ユーザー |
|
提出日時 | 2015-02-10 10:44:57 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 989 bytes |
コンパイル時間 | 82 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 128,044 KB |
最終ジャッジ日時 | 2024-06-23 16:57:40 |
合計ジャッジ時間 | 7,059 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 5 |
other | AC * 7 TLE * 1 -- * 12 |
ソースコード
#!/usr/bin/env python3 import time from collections import defaultdict def memoize(fn): table = {} def func(*args): if args not in table: table[args] = fn(*args) return table[args] return func def prime_factorization(n): factor = defaultdict(int) i = 2 while i * i <= n: while n % i == 0: n = n // i factor[i] += 1 i += 1 if n > 1: factor[n] += 1 return factor @memoize def nim(nums): if sum(nums) == 0: True for i in range(len(nums)): for j in (1, 2): if nums[i] < j: continue tmp = list(nums) tmp[i] -= j if nim(tuple(sorted(tmp))): return False return True N = int(input()) M = [int(x) for x in input().split()] init = [] for m in M: init.extend(sorted(prime_factorization(m).values())) if nim(tuple(sorted(init))): print("Bob") else: print("Alice")