結果

問題 No.2 素因数ゲーム
ユーザー 双六双六
提出日時 2020-07-25 23:31:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 771 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 65,648 KB
最終ジャッジ日時 2024-06-27 18:18:24
合計ジャッジ時間 2,913 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
64,168 KB
testcase_01 AC 53 ms
65,028 KB
testcase_02 AC 53 ms
63,292 KB
testcase_03 AC 53 ms
63,656 KB
testcase_04 AC 54 ms
63,984 KB
testcase_05 AC 56 ms
63,816 KB
testcase_06 AC 54 ms
64,256 KB
testcase_07 AC 54 ms
64,960 KB
testcase_08 AC 55 ms
63,760 KB
testcase_09 AC 53 ms
63,556 KB
testcase_10 AC 53 ms
64,336 KB
testcase_11 AC 54 ms
64,044 KB
testcase_12 AC 54 ms
64,440 KB
testcase_13 AC 53 ms
64,336 KB
testcase_14 AC 53 ms
64,704 KB
testcase_15 AC 53 ms
63,532 KB
testcase_16 AC 53 ms
64,968 KB
testcase_17 AC 53 ms
64,184 KB
testcase_18 AC 54 ms
64,768 KB
testcase_19 AC 54 ms
64,280 KB
testcase_20 AC 54 ms
63,796 KB
testcase_21 AC 54 ms
64,148 KB
testcase_22 AC 53 ms
63,708 KB
testcase_23 AC 54 ms
64,276 KB
testcase_24 AC 54 ms
63,468 KB
testcase_25 AC 54 ms
65,648 KB
testcase_26 AC 53 ms
64,968 KB
testcase_27 AC 54 ms
63,412 KB
testcase_28 AC 53 ms
63,216 KB
testcase_29 AC 53 ms
63,812 KB
testcase_30 AC 53 ms
64,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))


num = 10 ** 5 + 1
L = [1 for i in range(num)]; L[0] = 0; L[1] = 0
plist = []
for i in range(num):
	if L[i] == 1:
		plist.append(i); c = 2
		while i * c <= num - 1:
			L[i * c] = 0; c += 1

def prime_factorization(N):
	D = defaultdict(int)
	for i in plist:
		while N % i == 0:
			D[i] += 1; N = int(N // i)

	if N != 1:
		D[N] += 1

	return D

#処理内容
def main():
	N = int(input())
	fac = prime_factorization(N)
	XOR = 0
	for key, value in fac.items():
		XOR ^= value

	if XOR != 0:
		print("Alice")
	else:
		print("Bob")



if __name__ == '__main__':
	main()
0