結果

問題 No.2 素因数ゲーム
ユーザー noriocnorioc
提出日時 2024-09-03 21:44:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 5,000 ms
コード長 392 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 60,852 KB
最終ジャッジ日時 2024-09-03 21:44:59
合計ジャッジ時間 2,925 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,720 KB
testcase_01 AC 41 ms
53,844 KB
testcase_02 AC 42 ms
54,576 KB
testcase_03 AC 43 ms
54,904 KB
testcase_04 AC 41 ms
54,160 KB
testcase_05 AC 41 ms
55,464 KB
testcase_06 AC 42 ms
54,280 KB
testcase_07 AC 41 ms
54,072 KB
testcase_08 AC 46 ms
59,956 KB
testcase_09 AC 41 ms
54,640 KB
testcase_10 AC 43 ms
53,952 KB
testcase_11 AC 42 ms
53,884 KB
testcase_12 AC 43 ms
54,256 KB
testcase_13 AC 42 ms
53,668 KB
testcase_14 AC 42 ms
54,288 KB
testcase_15 AC 46 ms
59,672 KB
testcase_16 AC 46 ms
59,072 KB
testcase_17 AC 43 ms
54,644 KB
testcase_18 AC 42 ms
54,904 KB
testcase_19 AC 44 ms
58,828 KB
testcase_20 AC 45 ms
60,852 KB
testcase_21 AC 43 ms
59,100 KB
testcase_22 AC 45 ms
60,708 KB
testcase_23 AC 43 ms
54,064 KB
testcase_24 AC 45 ms
59,696 KB
testcase_25 AC 45 ms
59,964 KB
testcase_26 AC 41 ms
55,372 KB
testcase_27 AC 41 ms
53,868 KB
testcase_28 AC 43 ms
53,956 KB
testcase_29 AC 43 ms
53,612 KB
testcase_30 AC 43 ms
60,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter


def factorize(n: int) -> list[int]:
    res = []
    p = 2
    while p * p <= n:
        while n % p == 0:
            res.append(p)
            n //= p
        p += 1
    if n > 1:
        res.append(n)

    return res


N = int(input())

ans = 0
for v in Counter(factorize(N)).values():
    ans ^= v

if ans == 0:
    print('Bob')
else:
    print('Alice')
0