結果

問題 No.2 素因数ゲーム
ユーザー noriocnorioc
提出日時 2024-04-15 05:04:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,059 ms / 5,000 ms
コード長 474 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 81,268 KB
最終ジャッジ日時 2024-10-04 17:06:43
合計ジャッジ時間 4,457 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,232 KB
testcase_01 AC 33 ms
52,248 KB
testcase_02 AC 33 ms
52,220 KB
testcase_03 AC 33 ms
52,392 KB
testcase_04 AC 33 ms
52,200 KB
testcase_05 AC 33 ms
53,944 KB
testcase_06 AC 33 ms
52,136 KB
testcase_07 AC 69 ms
76,032 KB
testcase_08 AC 38 ms
58,180 KB
testcase_09 AC 1,004 ms
78,804 KB
testcase_10 AC 39 ms
58,648 KB
testcase_11 AC 51 ms
65,676 KB
testcase_12 AC 96 ms
75,932 KB
testcase_13 AC 1,059 ms
81,268 KB
testcase_14 AC 33 ms
53,616 KB
testcase_15 AC 35 ms
58,300 KB
testcase_16 AC 35 ms
58,108 KB
testcase_17 AC 32 ms
52,944 KB
testcase_18 AC 33 ms
52,944 KB
testcase_19 AC 36 ms
58,776 KB
testcase_20 AC 36 ms
58,240 KB
testcase_21 AC 36 ms
58,360 KB
testcase_22 AC 34 ms
57,804 KB
testcase_23 AC 32 ms
52,160 KB
testcase_24 AC 33 ms
59,200 KB
testcase_25 AC 35 ms
58,052 KB
testcase_26 AC 33 ms
52,900 KB
testcase_27 AC 39 ms
60,728 KB
testcase_28 AC 33 ms
53,352 KB
testcase_29 AC 34 ms
52,268 KB
testcase_30 AC 36 ms
57,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


N = int(input())
ps = set(factorize(N))


def f(turn, n: int) -> bool:
    if n == 1:
        return False

    res = False
    for p in ps:
        x = n
        while x % p == 0:
            x //= p
            res |= not f(turn ^ 1, x)

    return res


if f(0, N):
    print('Alice')
else:
    print('Bob')
0