結果

問題 No.103 素因数ゲーム リターンズ
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-06 20:30:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 5,000 ms
コード長 454 bytes
コンパイル時間 428 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 61,440 KB
最終ジャッジ日時 2024-05-03 04:42:13
合計ジャッジ時間 2,467 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,632 KB
testcase_01 AC 39 ms
53,504 KB
testcase_02 AC 37 ms
54,016 KB
testcase_03 AC 39 ms
53,760 KB
testcase_04 AC 46 ms
53,760 KB
testcase_05 AC 38 ms
53,376 KB
testcase_06 AC 36 ms
53,888 KB
testcase_07 AC 38 ms
53,760 KB
testcase_08 AC 37 ms
53,760 KB
testcase_09 AC 36 ms
53,632 KB
testcase_10 AC 37 ms
53,760 KB
testcase_11 AC 37 ms
53,888 KB
testcase_12 AC 39 ms
59,264 KB
testcase_13 AC 40 ms
59,136 KB
testcase_14 AC 43 ms
61,440 KB
testcase_15 AC 40 ms
59,648 KB
testcase_16 AC 37 ms
54,272 KB
testcase_17 AC 38 ms
59,264 KB
testcase_18 AC 38 ms
59,520 KB
testcase_19 AC 40 ms
59,776 KB
testcase_20 AC 39 ms
59,520 KB
testcase_21 AC 39 ms
59,520 KB
testcase_22 AC 39 ms
59,264 KB
testcase_23 AC 38 ms
58,752 KB
testcase_24 AC 39 ms
59,904 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