結果

問題 No.2 素因数ゲーム
ユーザー gigurururugigurururu
提出日時 2014-11-04 13:58:18
言語 Python2
(2.7.18)
結果
MLE  
実行時間 -
コード長 418 bytes
コンパイル時間 838 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 1,125,836 KB
最終ジャッジ日時 2024-12-30 17:21:33
合計ジャッジ時間 82,322 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import math
max = input()
max2 = max+1
sieve = [True]*max2
t = 0
while max % 2 == 0:
  max /= 2
  t += 1
x = [t]
for i in range(int((max-3)/2)+1):
  if not sieve[i]: continue
  k = i+i+3
  t = 0
  while max % k == 0:
    max /= k
    t += 1
  x.append(t)
  if max == 1: break
  j = k*(i+1)+i
  while j < max2:
    sieve[j] = False
    j += k
print "Alice" if reduce(lambda i,j:i^j,x)>0 else "Bob"
0