結果

問題 No.103 素因数ゲーム リターンズ
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-06 20:30:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 5,000 ms
コード長 454 bytes
コンパイル時間 785 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 60,672 KB
最終ジャッジ日時 2024-11-24 01:49:57
合計ジャッジ時間 2,266 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,760 KB
testcase_01 AC 45 ms
53,632 KB
testcase_02 AC 45 ms
54,144 KB
testcase_03 AC 43 ms
53,760 KB
testcase_04 AC 42 ms
53,504 KB
testcase_05 AC 43 ms
53,376 KB
testcase_06 AC 42 ms
53,504 KB
testcase_07 AC 42 ms
53,888 KB
testcase_08 AC 42 ms
53,248 KB
testcase_09 AC 46 ms
53,888 KB
testcase_10 AC 43 ms
53,760 KB
testcase_11 AC 43 ms
53,504 KB
testcase_12 AC 45 ms
59,392 KB
testcase_13 AC 47 ms
59,136 KB
testcase_14 AC 50 ms
60,672 KB
testcase_15 AC 47 ms
58,752 KB
testcase_16 AC 44 ms
53,888 KB
testcase_17 AC 48 ms
58,752 KB
testcase_18 AC 47 ms
59,008 KB
testcase_19 AC 48 ms
59,520 KB
testcase_20 AC 47 ms
59,136 KB
testcase_21 AC 48 ms
58,752 KB
testcase_22 AC 47 ms
59,264 KB
testcase_23 AC 47 ms
59,008 KB
testcase_24 AC 48 ms
59,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
from collections import defaultdict as df
def  p(n):
    t = df(int)
    for i in range(2, int(n**0.5)+1):
        while n % i == 0:
            t[i] += 1
            n //= i
    if n > 1:
        t[n] += 1
    return t

ap = []
ans = 0
for i in range(n):
    d=p(a[i])
    t = 0
    for j in d.values():
        t^=j%3
    ans ^= t

print('Bob' if ans == 0 else 'Alice')
        
    
    
"""
012012

"""
0