結果

問題 No.103 素因数ゲーム リターンズ
ユーザー あかりきあかりき
提出日時 2021-05-04 19:19:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 5,000 ms
コード長 557 bytes
コンパイル時間 480 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-07-23 14:33:47
合計ジャッジ時間 3,210 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
76,220 KB
testcase_01 AC 84 ms
76,416 KB
testcase_02 AC 85 ms
76,288 KB
testcase_03 AC 83 ms
76,416 KB
testcase_04 AC 82 ms
76,488 KB
testcase_05 AC 88 ms
76,248 KB
testcase_06 AC 84 ms
76,456 KB
testcase_07 AC 85 ms
76,276 KB
testcase_08 AC 85 ms
76,396 KB
testcase_09 AC 85 ms
76,216 KB
testcase_10 AC 86 ms
76,416 KB
testcase_11 AC 84 ms
76,416 KB
testcase_12 AC 84 ms
76,512 KB
testcase_13 AC 83 ms
76,264 KB
testcase_14 AC 83 ms
76,672 KB
testcase_15 AC 85 ms
76,524 KB
testcase_16 AC 85 ms
76,276 KB
testcase_17 AC 83 ms
76,544 KB
testcase_18 AC 84 ms
76,280 KB
testcase_19 AC 83 ms
76,544 KB
testcase_20 AC 84 ms
76,416 KB
testcase_21 AC 83 ms
76,328 KB
testcase_22 AC 83 ms
76,416 KB
testcase_23 AC 86 ms
76,416 KB
testcase_24 AC 85 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def fact(n):
  fct=[]
  b,e=2,0
  while b*b<=n:
    while n%b==0:
      n=n//b
      e=e+1
    if e>0:
      fct.append((b,e))
    b,e=b+1,0
  if n>1:
    fct.append((n,1))
  return fct

g=[0]*(10**4+1)
g[1]=0
for i in range(2,10**4+1):
  L=[0]*100
  f=fact(i)
  for j in range(len(f)):
    L[g[i//f[j][0]]]=1
    if f[j][1]>1:
      L[g[i//(f[j][0]**2)]]=1
  for j in range(len(L)):
    if L[j]==0:
      g[i]=j
      break

x=0
for i in range(n):
  x^=g[m[i]]
if x==0:
  print('Bob')
else:
  print('Alice')
0