結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,520 KB
testcase_01 AC 43 ms
54,236 KB
testcase_02 AC 38 ms
54,612 KB
testcase_03 AC 37 ms
54,796 KB
testcase_04 WA -
testcase_05 AC 38 ms
54,088 KB
testcase_06 AC 37 ms
53,932 KB
testcase_07 AC 37 ms
54,936 KB
testcase_08 WA -
testcase_09 AC 37 ms
54,004 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 37 ms
54,376 KB
testcase_13 AC 42 ms
53,684 KB
testcase_14 AC 38 ms
60,240 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 39 ms
60,628 KB
testcase_18 AC 39 ms
59,108 KB
testcase_19 AC 39 ms
60,628 KB
testcase_20 WA -
testcase_21 AC 39 ms
60,308 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 39 ms
60,488 KB
testcase_27 AC 40 ms
60,480 KB
testcase_28 AC 37 ms
55,252 KB
testcase_29 AC 38 ms
54,396 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 == 1):
      break
  # Nが素数の場合(素因数分解完了後にNが1より大きい場合)
  #if(N > 1):
  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