結果

問題 No.2 素因数ゲーム
ユーザー AAAR SalmonAAAR Salmon
提出日時 2021-05-22 00:32:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 308 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 62,072 KB
最終ジャッジ日時 2024-10-10 10:27:17
合計ジャッジ時間 2,881 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
55,796 KB
testcase_01 AC 50 ms
55,172 KB
testcase_02 AC 49 ms
54,988 KB
testcase_03 AC 49 ms
56,168 KB
testcase_04 AC 45 ms
54,844 KB
testcase_05 AC 45 ms
54,872 KB
testcase_06 AC 47 ms
56,488 KB
testcase_07 AC 49 ms
55,304 KB
testcase_08 AC 53 ms
60,904 KB
testcase_09 AC 46 ms
56,472 KB
testcase_10 AC 49 ms
54,728 KB
testcase_11 AC 48 ms
56,168 KB
testcase_12 AC 49 ms
54,844 KB
testcase_13 AC 48 ms
55,092 KB
testcase_14 AC 45 ms
55,652 KB
testcase_15 AC 47 ms
61,708 KB
testcase_16 AC 50 ms
60,608 KB
testcase_17 AC 50 ms
55,624 KB
testcase_18 AC 49 ms
55,184 KB
testcase_19 AC 49 ms
61,540 KB
testcase_20 AC 50 ms
61,128 KB
testcase_21 AC 51 ms
62,072 KB
testcase_22 AC 50 ms
61,580 KB
testcase_23 AC 47 ms
56,160 KB
testcase_24 AC 49 ms
61,388 KB
testcase_25 AC 49 ms
61,944 KB
testcase_26 AC 45 ms
55,716 KB
testcase_27 AC 45 ms
56,376 KB
testcase_28 AC 45 ms
56,352 KB
testcase_29 AC 45 ms
54,796 KB
testcase_30 AC 50 ms
61,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from functools import reduce
from operator import xor

N = int(input())

pf = defaultdict(lambda: 0)
i = 2
while i * i <= N:
	if N % i == 0:
		while N % i == 0:
			pf[i] += 1
			N //= i
	i += 1
if N != 1:
	pf[N] += 1

print('Alice' if reduce(xor, pf.values()) else 'Bob')
0