結果

問題 No.2 素因数ゲーム
ユーザー gigurururugigurururu
提出日時 2014-11-04 13:38:48
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 485 bytes
コンパイル時間 985 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 524,008 KB
最終ジャッジ日時 2024-12-30 17:20:01
合計ジャッジ時間 150,130 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
11,392 KB
testcase_01 AC 14 ms
11,776 KB
testcase_02 AC 13 ms
314,420 KB
testcase_03 AC 13 ms
11,648 KB
testcase_04 AC 14 ms
11,648 KB
testcase_05 AC 54 ms
348,560 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 MLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
max = input()
max2 = (max-3)/2+1
sieve = [True]*max2
for i in range(int((math.sqrt(max)-3)/2)+1):
  if not sieve[i]: continue
  k = i+i+3
  j = k*(i+1)+i
  while j < max2:
    sieve[j] = False
    j += k

for i in range(max2):
  if sieve[i]: sieve[i]=i+i+3
sieve=[2]+sieve
sieve=[[i,0] for i in sieve if i]
for i in sieve:
    while max%i[0]==0:
        max/=i[0]
        i[1]+=1
print "Alice" if reduce(lambda x,y:x^y,[j for i,j in sieve])>0 else "Bob"
0