結果

問題 No.103 素因数ゲーム リターンズ
ユーザー lollipoplollipop
提出日時 2024-08-25 14:15:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 1,095 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 63,100 KB
最終ジャッジ日時 2024-08-25 14:15:10
合計ジャッジ時間 2,184 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,056 KB
testcase_01 AC 42 ms
56,008 KB
testcase_02 AC 42 ms
55,708 KB
testcase_03 AC 43 ms
55,848 KB
testcase_04 AC 43 ms
55,376 KB
testcase_05 AC 44 ms
56,420 KB
testcase_06 AC 42 ms
55,752 KB
testcase_07 AC 44 ms
56,232 KB
testcase_08 AC 43 ms
55,652 KB
testcase_09 AC 45 ms
55,116 KB
testcase_10 AC 43 ms
56,028 KB
testcase_11 AC 42 ms
56,032 KB
testcase_12 AC 45 ms
61,356 KB
testcase_13 AC 46 ms
61,916 KB
testcase_14 AC 49 ms
62,564 KB
testcase_15 AC 46 ms
62,556 KB
testcase_16 AC 41 ms
55,688 KB
testcase_17 AC 48 ms
61,856 KB
testcase_18 AC 45 ms
61,724 KB
testcase_19 AC 46 ms
63,100 KB
testcase_20 AC 44 ms
62,052 KB
testcase_21 AC 48 ms
62,428 KB
testcase_22 AC 45 ms
60,960 KB
testcase_23 AC 44 ms
61,528 KB
testcase_24 AC 45 ms
62,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def prime_numbers(x) :
    
    if x < 2 :
        return []
    
    prime = []
    for i in range(2, int(x**0.5) + 1) :
        while x % i == 0 :
            prime.append(i)
            x //= i

    if x > 1 :
        prime.append(x)
    
    return prime
##########################################################################
import functools
@functools.lru_cache(maxsize=10**8)
def f(x):
    s = set()
    if x >= 1: s.add(f(x-1))
    if x >= 2: s.add(f(x-2))
    for i in range(3):
        if i not in s:
            mex = i; break
    return mex
##########################################################################
def xor_sum(A):
    ret = 0
    for a in A: ret ^= a
    return ret
##########################################################################
from collections import Counter

N = int(input())
M = list(map(int,input().split()))

prime = [prime_numbers(M[i]) for i in range(N)]

grundy_1 = 0
for i in range(N):
    grundy_2 = 0
    for j in Counter(prime[i]).values():
        grundy_2 ^= f(j)
    grundy_1 ^= grundy_2

print("Alice") if grundy_1 else print("Bob")
0