結果
| 問題 | No.2 素因数ゲーム | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2015-03-25 23:55:57 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 40 ms / 5,000 ms | 
| コード長 | 1,346 bytes | 
| コンパイル時間 | 229 ms | 
| コンパイル使用メモリ | 12,672 KB | 
| 実行使用メモリ | 11,008 KB | 
| 最終ジャッジ日時 | 2024-12-26 11:04:35 | 
| 合計ジャッジ時間 | 2,510 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 31 | 
ソースコード
import math
import collections
def factorize(n):
    ''' returns a list of prime factors of n.
    ex. factorize(24) = [2, 2, 2, 3]
    source: Rossetta code: prime factorization (slightly modified)
    http://rosettacode.org/wiki/Prime_decomposition#Python:_Using_floating_point
    '''
    step = lambda x: 1 + (x<<2) - ((x>>1)<<1)
    maxq = int(math.floor(math.sqrt(n)))
    d = 1
    q = n % 2 == 0 and 2 or 3
    while q <= maxq and n % q != 0:
        q = step(d)
        d += 1
    return q <= maxq and [q] + factorize(n//q) or [n]
def solve(N):
    facs = factorize(N)
    facs = collections.Counter(facs)
    facs = list(facs.values())
    facs.sort()
    return f(facs)
memo = dict()
def f(facs):
    global memo
    facs.sort()
    if facs[0] == 0:
        facs = facs[1:]
    facs_tuple = tuple(facs)
    if facs_tuple in memo:
        return memo[facs_tuple]
    if len(facs_tuple) == 1:
        memo[facs_tuple] = True
        return True
    for i, fac in enumerate(facs_tuple):
        for j in range(fac):
            new_facs = facs[:i] + [j] + facs[i + 1:]
            if not f(new_facs):
                memo[facs_tuple] = True
                return True
    memo[facs_tuple] = False
    return False
if __name__ == '__main__':
    N = int(input())
    if solve(N):
        print('Alice')
    else:
        print('Bob')
            
            
            
        