結果

問題 No.2 素因数ゲーム
ユーザー gahougahou
提出日時 2016-11-11 16:04:45
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 701 bytes
コンパイル時間 606 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-04 02:09:01
合計ジャッジ時間 1,840 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
6,816 KB
testcase_01 AC 20 ms
6,940 KB
testcase_02 AC 18 ms
6,944 KB
testcase_03 AC 19 ms
6,940 KB
testcase_04 AC 19 ms
6,940 KB
testcase_05 AC 19 ms
6,940 KB
testcase_06 AC 19 ms
6,940 KB
testcase_07 WA -
testcase_08 AC 18 ms
6,944 KB
testcase_09 AC 18 ms
6,940 KB
testcase_10 AC 18 ms
6,944 KB
testcase_11 AC 19 ms
6,940 KB
testcase_12 WA -
testcase_13 AC 19 ms
6,940 KB
testcase_14 AC 18 ms
6,940 KB
testcase_15 AC 18 ms
6,944 KB
testcase_16 AC 18 ms
6,944 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 19 ms
6,940 KB
testcase_20 AC 18 ms
6,940 KB
testcase_21 AC 19 ms
6,944 KB
testcase_22 AC 18 ms
6,940 KB
testcase_23 AC 19 ms
6,944 KB
testcase_24 AC 19 ms
6,940 KB
testcase_25 AC 19 ms
6,944 KB
testcase_26 WA -
testcase_27 AC 18 ms
6,940 KB
testcase_28 AC 18 ms
6,940 KB
testcase_29 WA -
testcase_30 AC 18 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import re

def isPrime(n,lst):
  for i in xrange(len(lst)):
    if n%lst[i]==0: return False
    if n<=lst[i]**2: return True

def primes():
  lst=[2]
  n=3
  while True:
    if n > 10**4: break
    if isPrime(n,lst):
      lst.append(n)
    n+=2
  return lst

def breakDown(n):
  lst=primes()
  dic={}
  for i in xrange(len(lst)):
    c=0
    if not n%lst[i]==0: continue
    while True:
      if not n%lst[i]==0: break
      else:
        n/=lst[i]
        c+=1
    dic[lst[i]]=c
  if not n==1: dic[n]=1
  return dic

def judge(n):
  s=bin(n)
  if len(re.findall('1',s))%2==0: print "Bob"
  else: print "Alice"

n=int(raw_input())
ans=0
dic=breakDown(n)
for i in dic.values():
  ans=ans^i
judge(ans)
0