結果

問題 No.2 素因数ゲーム
ユーザー otsunekootsuneko
提出日時 2021-04-24 13:19:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 5,000 ms
コード長 418 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 60,976 KB
最終ジャッジ日時 2024-07-04 09:04:45
合計ジャッジ時間 2,388 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,836 KB
testcase_01 AC 41 ms
54,856 KB
testcase_02 AC 42 ms
54,124 KB
testcase_03 AC 41 ms
54,072 KB
testcase_04 AC 40 ms
54,304 KB
testcase_05 AC 40 ms
53,952 KB
testcase_06 AC 39 ms
55,400 KB
testcase_07 AC 40 ms
54,060 KB
testcase_08 AC 42 ms
59,148 KB
testcase_09 AC 40 ms
54,372 KB
testcase_10 AC 41 ms
54,040 KB
testcase_11 AC 40 ms
54,332 KB
testcase_12 AC 40 ms
53,840 KB
testcase_13 AC 40 ms
54,564 KB
testcase_14 AC 41 ms
53,780 KB
testcase_15 AC 42 ms
59,800 KB
testcase_16 AC 41 ms
59,892 KB
testcase_17 AC 40 ms
53,796 KB
testcase_18 AC 41 ms
54,576 KB
testcase_19 AC 45 ms
60,976 KB
testcase_20 AC 44 ms
58,760 KB
testcase_21 AC 42 ms
59,408 KB
testcase_22 AC 43 ms
58,828 KB
testcase_23 AC 41 ms
55,044 KB
testcase_24 AC 43 ms
58,896 KB
testcase_25 AC 43 ms
58,696 KB
testcase_26 AC 41 ms
54,560 KB
testcase_27 AC 41 ms
54,784 KB
testcase_28 AC 41 ms
54,360 KB
testcase_29 AC 38 ms
55,180 KB
testcase_30 AC 42 ms
60,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
def prime_decomposition(n):
  i = 2
  table = []
  while i * i <= n:
    while n % i == 0:
      n = n//i
      table.append(i)
    i += 1
  if n > 1:
    table.append(n)
  return table

N = int(input())
prime = prime_decomposition(N)
d = Counter()
d.update(prime)

xor = 0
for key in d:
    xor = xor ^ d[key]

if xor:
    print("Alice")
else:
    print("Bob")
0