結果

問題 No.2 素因数ゲーム
ユーザー hiro5277hiro5277
提出日時 2024-11-24 09:36:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,355 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 61,376 KB
最終ジャッジ日時 2024-11-24 09:36:40
合計ジャッジ時間 2,391 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
55,308 KB
testcase_01 AC 37 ms
53,924 KB
testcase_02 AC 38 ms
53,980 KB
testcase_03 AC 35 ms
54,320 KB
testcase_04 WA -
testcase_05 AC 34 ms
54,316 KB
testcase_06 AC 37 ms
54,360 KB
testcase_07 AC 37 ms
54,812 KB
testcase_08 WA -
testcase_09 AC 35 ms
54,332 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 35 ms
54,004 KB
testcase_13 AC 34 ms
55,504 KB
testcase_14 AC 37 ms
59,836 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 38 ms
59,560 KB
testcase_18 AC 42 ms
60,808 KB
testcase_19 AC 39 ms
60,112 KB
testcase_20 WA -
testcase_21 AC 37 ms
58,980 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 37 ms
60,092 KB
testcase_27 AC 37 ms
59,356 KB
testcase_28 AC 35 ms
54,644 KB
testcase_29 AC 35 ms
54,040 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from collections import defaultdict

# 素因数分解
def factrization(N):
  # 2~sqrt(N)で割れるものがあれば可能な限り割る(事前に素数列挙は不要。素数で割り続けるので、合成数では割れることはない)
  prime_factors  = defaultdict(int) # prime_factors[p] = (Nを素因数pで割れた回数)
  for p in range(2,int(math.sqrt(N))+1):
    if(N%p == 0):
      # 素因数pで何回割れるかを求める
      div_count = 0
      while(N%p == 0):
        N = N//p
        div_count += 1
      prime_factors[p] = div_count
    if(N < 2):
      break
  # Nが素数の場合
  if(prime_factors == {}):
    prime_factors[N] = 1
  return prime_factors
 
# 方針 : 本質的にはニムと同じ問題
#  各素因数の指数 = 各山の石の個数 と読み替えればニムと同じ
#  1 : Nを素因数分解の各素因数の指数をa1,a2,...,akを求める
#  2 : ニム和X = a1 xor a2 xor ... xor ak を求める
#  3 : X=0なら後手必勝、X≠0なら先手必勝
N = int(input())
prime_factors = factrization(N) # 素因数分解の結果
#print(prime_factors)
nim_sum = 0
for factor, exponent in prime_factors.items():
  nim_sum = nim_sum ^ exponent

# ニム和:0以外なら先手(Alice)必勝、0なら後手(Bob)必勝、
if(nim_sum != 0):
  print("Alice")
else:
  print("Bob")  
0