結果

問題 No.103 素因数ゲーム リターンズ
ユーザー warashiwarashi
提出日時 2015-02-09 22:06:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,151 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 10,984 KB
実行使用メモリ 76,276 KB
最終ジャッジ日時 2023-09-05 21:18:58
合計ジャッジ時間 7,754 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
8,740 KB
testcase_01 AC 19 ms
8,720 KB
testcase_02 AC 19 ms
8,540 KB
testcase_03 AC 170 ms
11,520 KB
testcase_04 AC 19 ms
8,528 KB
testcase_05 AC 19 ms
8,668 KB
testcase_06 AC 18 ms
8,552 KB
testcase_07 AC 19 ms
8,704 KB
testcase_08 AC 19 ms
8,592 KB
testcase_09 AC 19 ms
8,524 KB
testcase_10 AC 18 ms
8,744 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
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([sum(n) for n in nums]) == 0:
        True
    for s in range(len(nums)):
        for i in range(len(nums[s])):
            for j in (1, 2):
                if nums[s][i] < j:
                    continue
                foo = list(nums)
                tmp = list(nums[s])
                tmp[i] -= j
                foo[s] = tuple(sorted(tmp))
                if nim(tuple(sorted(foo))):
                    return False
    return True

N = int(input())
M = [int(x) for x in input().split()]
init = []
for m in M:
    init.append(tuple(sorted(prime_factorization(m).values())))
if nim(tuple(sorted(init))):
    print("Bob")
else:
    print("Alice")
0