結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,800 KB
testcase_01 AC 42 ms
54,864 KB
testcase_02 AC 41 ms
54,436 KB
testcase_03 AC 41 ms
55,300 KB
testcase_04 AC 43 ms
55,660 KB
testcase_05 AC 41 ms
54,064 KB
testcase_06 AC 41 ms
55,240 KB
testcase_07 AC 42 ms
55,188 KB
testcase_08 AC 44 ms
59,968 KB
testcase_09 AC 42 ms
55,052 KB
testcase_10 AC 41 ms
54,384 KB
testcase_11 AC 41 ms
55,024 KB
testcase_12 AC 41 ms
54,000 KB
testcase_13 AC 43 ms
53,956 KB
testcase_14 AC 41 ms
54,964 KB
testcase_15 AC 43 ms
59,216 KB
testcase_16 AC 44 ms
59,020 KB
testcase_17 AC 41 ms
54,492 KB
testcase_18 AC 41 ms
54,624 KB
testcase_19 AC 42 ms
59,304 KB
testcase_20 AC 44 ms
59,424 KB
testcase_21 AC 44 ms
59,892 KB
testcase_22 AC 45 ms
59,884 KB
testcase_23 AC 41 ms
55,396 KB
testcase_24 AC 44 ms
59,944 KB
testcase_25 AC 44 ms
60,428 KB
testcase_26 AC 41 ms
53,500 KB
testcase_27 AC 41 ms
55,236 KB
testcase_28 AC 41 ms
53,944 KB
testcase_29 AC 42 ms
54,508 KB
testcase_30 AC 46 ms
59,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections.abc import Iterator
from collections import Counter


def factorize(n: int) -> Iterator[int]:
    p = 2
    while p * p <= n:
        while n % p == 0:
            yield p
            n //= p
        p += 1
    if n > 1:
        yield n


N = int(input())

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

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