結果

問題 No.103 素因数ゲーム リターンズ
ユーザー marroncastlemarroncastle
提出日時 2020-09-19 01:34:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 434 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 60,616 KB
最終ジャッジ日時 2024-06-22 15:54:21
合計ジャッジ時間 2,749 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,788 KB
testcase_01 AC 38 ms
54,192 KB
testcase_02 AC 38 ms
54,812 KB
testcase_03 AC 36 ms
54,380 KB
testcase_04 AC 37 ms
54,312 KB
testcase_05 AC 36 ms
53,488 KB
testcase_06 AC 36 ms
55,208 KB
testcase_07 AC 36 ms
54,508 KB
testcase_08 AC 37 ms
54,592 KB
testcase_09 AC 36 ms
55,048 KB
testcase_10 AC 35 ms
55,228 KB
testcase_11 AC 36 ms
55,416 KB
testcase_12 AC 36 ms
54,116 KB
testcase_13 AC 41 ms
60,480 KB
testcase_14 AC 40 ms
59,936 KB
testcase_15 AC 38 ms
60,028 KB
testcase_16 AC 37 ms
54,440 KB
testcase_17 AC 39 ms
59,444 KB
testcase_18 AC 36 ms
54,128 KB
testcase_19 AC 40 ms
60,616 KB
testcase_20 AC 38 ms
54,184 KB
testcase_21 AC 37 ms
55,044 KB
testcase_22 AC 36 ms
54,300 KB
testcase_23 AC 37 ms
54,040 KB
testcase_24 AC 37 ms
54,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#素因数分解、計算量はO(√N)
from collections import defaultdict
def factorize(n):
  dic = defaultdict(lambda: 0)
  b = 2
  while b * b <= n:
    while n % b == 0:
      n //= b
      dic[b] += 1
    b += 1
  if n > 1:
    dic[n] += 1
  return dic

N = int(input())
A = list(map(int, input().split()))
ans = 0
for i in range(N):
  d = factorize(A[i])
  for v in d.values():
    ans ^= v%3
print('Bob' if ans==0 else 'Alice')
0