結果

問題 No.103 素因数ゲーム リターンズ
ユーザー 👑 rin204rin204
提出日時 2022-07-04 15:12:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 5,000 ms
コード長 935 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,832 KB
実行使用メモリ 63,076 KB
最終ジャッジ日時 2024-05-08 04:38:28
合計ジャッジ時間 2,631 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
61,100 KB
testcase_01 AC 48 ms
62,272 KB
testcase_02 AC 49 ms
62,596 KB
testcase_03 AC 47 ms
61,492 KB
testcase_04 AC 48 ms
61,016 KB
testcase_05 AC 52 ms
60,516 KB
testcase_06 AC 48 ms
62,476 KB
testcase_07 AC 48 ms
61,840 KB
testcase_08 AC 48 ms
61,160 KB
testcase_09 AC 48 ms
61,020 KB
testcase_10 AC 48 ms
60,924 KB
testcase_11 AC 47 ms
61,988 KB
testcase_12 AC 49 ms
63,064 KB
testcase_13 AC 48 ms
62,376 KB
testcase_14 AC 48 ms
61,388 KB
testcase_15 AC 60 ms
62,704 KB
testcase_16 AC 47 ms
61,508 KB
testcase_17 AC 48 ms
61,808 KB
testcase_18 AC 47 ms
61,480 KB
testcase_19 AC 49 ms
63,076 KB
testcase_20 AC 48 ms
62,104 KB
testcase_21 AC 48 ms
61,036 KB
testcase_22 AC 49 ms
62,804 KB
testcase_23 AC 48 ms
61,916 KB
testcase_24 AC 49 ms
62,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = 200000
div = [i for i in range(N)]
for i in range(2, int(N ** 0.5 + 1)):
    if div[i] != i:
        continue
    for j in range(i * i, N, i):
        if div[j] == j:
            div[j] = i



m = int(input())
A = list(map(int, input().split()))

memo = {():0}
def f(lst):
    tup = tuple(sorted(l for l in lst if l != 0))
    if tup in memo:
        return memo[tup]
    se = set()
    le = len(lst)
    for i in range(le):
        if lst[i] >= 1:
            lst[i] -= 1
            se.add(f(lst))
            lst[i] += 1
        if lst[i] >= 2:
            lst[i] -= 2
            se.add(f(lst))
            lst[i] += 2
    mex = 0
    while mex in se:
        mex += 1
    memo[tup] = mex
    return mex

xor = 0
for a in A:
    cnt = {}
    while a >= 2:
        cnt[div[a]] = cnt.get(div[a], 0) + 1
        a //= div[a]
    lst = sorted(cnt.values())
    xor ^= f(lst)

if xor == 0:
    print("Bob")
else:
    print("Alice")
0