結果

問題 No.2 素因数ゲーム
ユーザー もちふわゆるゆるもちふわゆるゆる
提出日時 2023-04-14 17:23:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 504 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 59,240 KB
最終ジャッジ日時 2024-10-10 08:33:01
合計ジャッジ時間 2,421 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,600 KB
testcase_01 AC 38 ms
52,196 KB
testcase_02 AC 39 ms
52,996 KB
testcase_03 AC 39 ms
52,852 KB
testcase_04 AC 37 ms
53,420 KB
testcase_05 AC 37 ms
52,472 KB
testcase_06 AC 37 ms
53,220 KB
testcase_07 AC 37 ms
52,332 KB
testcase_08 AC 40 ms
58,628 KB
testcase_09 AC 38 ms
53,328 KB
testcase_10 AC 37 ms
52,660 KB
testcase_11 AC 37 ms
53,048 KB
testcase_12 AC 38 ms
53,420 KB
testcase_13 AC 37 ms
53,628 KB
testcase_14 AC 36 ms
53,516 KB
testcase_15 AC 40 ms
58,116 KB
testcase_16 AC 39 ms
57,948 KB
testcase_17 AC 38 ms
52,960 KB
testcase_18 AC 38 ms
52,444 KB
testcase_19 AC 42 ms
57,508 KB
testcase_20 AC 40 ms
58,332 KB
testcase_21 AC 40 ms
57,520 KB
testcase_22 AC 40 ms
58,684 KB
testcase_23 AC 37 ms
52,996 KB
testcase_24 AC 40 ms
59,240 KB
testcase_25 AC 40 ms
58,320 KB
testcase_26 AC 37 ms
52,820 KB
testcase_27 AC 36 ms
53,120 KB
testcase_28 AC 38 ms
53,284 KB
testcase_29 AC 36 ms
52,128 KB
testcase_30 AC 40 ms
58,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, math
input = lambda: sys.stdin.readline()[:-1]
def MI(): return map(int, input().split())
inf = 10**18

n, = MI()

# 素因数分解√n
def prime_fac(n):
    res = []
    x = n
    y = 2
    while y*y <= x:
        ex = 0
        while x % y == 0:
            ex += 1
            x //= y
        if ex > 0: res.append((y, ex))
        y += 1
    if x > 1: res.append((x, 1))
    return res

n_prime = prime_fac(n)
ans = 0
for i, c in n_prime:
    ans ^= c
print('Alice' if ans!=0 else 'Bob')
0