結果

問題 No.103 素因数ゲーム リターンズ
ユーザー yaoshimaxyaoshimax
提出日時 2015-03-11 01:17:33
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 317 ms / 5,000 ms
コード長 684 bytes
コンパイル時間 536 ms
コンパイル使用メモリ 76,544 KB
実行使用メモリ 79,104 KB
最終ジャッジ日時 2024-06-24 17:12:53
合計ジャッジ時間 9,906 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 314 ms
78,464 KB
testcase_01 AC 312 ms
78,848 KB
testcase_02 AC 317 ms
78,464 KB
testcase_03 AC 313 ms
78,336 KB
testcase_04 AC 313 ms
78,464 KB
testcase_05 AC 315 ms
78,848 KB
testcase_06 AC 314 ms
78,464 KB
testcase_07 AC 317 ms
78,464 KB
testcase_08 AC 312 ms
78,848 KB
testcase_09 AC 313 ms
78,464 KB
testcase_10 AC 313 ms
78,848 KB
testcase_11 AC 314 ms
78,464 KB
testcase_12 AC 316 ms
79,104 KB
testcase_13 AC 312 ms
78,720 KB
testcase_14 AC 317 ms
78,592 KB
testcase_15 AC 316 ms
78,464 KB
testcase_16 AC 313 ms
78,848 KB
testcase_17 AC 313 ms
78,464 KB
testcase_18 AC 316 ms
78,464 KB
testcase_19 AC 315 ms
78,336 KB
testcase_20 AC 313 ms
78,848 KB
testcase_21 AC 313 ms
78,720 KB
testcase_22 AC 313 ms
78,720 KB
testcase_23 AC 314 ms
78,592 KB
testcase_24 AC 317 ms
78,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(raw_input())
M=map(int,raw_input().split())
grundy = [0 for i in range(10001)]
isPrime=[True for i in range(10001)]
isPrime[0]=False
isPrime[1]=False
for i in range(2,10001):
    if isPrime[i]:
        for j in range(i+i,10001,i):
            isPrime[j]=False
prime=[i for i in range(10001) if isPrime[i]]
for i in xrange(2,10001):
    s=set([])
    for p in prime:
        if i%p==0:
            s.add(grundy[i/p])
            if i%(p*p)==0:
                s.add(grundy[i/p/p])
    for g in xrange(10001):
        if not g in s:
            grundy[i]=g
            break
    #print grundy[i],
g=0
for m in M:
    g^=grundy[m]
if g==0:
    print "Bob"
else:
    print "Alice"

0