結果

問題 No.2 素因数ゲーム
ユーザー lllllll88938494lllllll88938494
提出日時 2023-02-02 00:52:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 5,000 ms
コード長 324 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 60,860 KB
最終ジャッジ日時 2024-07-01 18:00:08
合計ジャッジ時間 2,907 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,244 KB
testcase_01 AC 43 ms
55,148 KB
testcase_02 AC 43 ms
55,228 KB
testcase_03 AC 42 ms
55,100 KB
testcase_04 AC 43 ms
54,400 KB
testcase_05 AC 42 ms
55,312 KB
testcase_06 AC 44 ms
58,968 KB
testcase_07 AC 45 ms
59,416 KB
testcase_08 AC 45 ms
59,712 KB
testcase_09 AC 45 ms
59,316 KB
testcase_10 AC 44 ms
58,776 KB
testcase_11 AC 45 ms
59,508 KB
testcase_12 AC 45 ms
60,860 KB
testcase_13 AC 44 ms
58,836 KB
testcase_14 AC 45 ms
59,416 KB
testcase_15 AC 45 ms
59,924 KB
testcase_16 AC 45 ms
58,884 KB
testcase_17 AC 45 ms
58,440 KB
testcase_18 AC 46 ms
58,560 KB
testcase_19 AC 46 ms
60,292 KB
testcase_20 AC 46 ms
60,148 KB
testcase_21 AC 45 ms
60,252 KB
testcase_22 AC 44 ms
59,956 KB
testcase_23 AC 45 ms
59,680 KB
testcase_24 AC 44 ms
59,488 KB
testcase_25 AC 45 ms
59,348 KB
testcase_26 AC 45 ms
59,344 KB
testcase_27 AC 45 ms
59,672 KB
testcase_28 AC 45 ms
58,904 KB
testcase_29 AC 45 ms
59,292 KB
testcase_30 AC 46 ms
60,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter 
def  p(n):
    t = []
    for i in range(2, int(n**0.5)+1):
        while n % i == 0:
            t.append(i)
            n //= i
    if n > 1:
        t.append(n)
    return t

n = int(input())
t=Counter(p(n))
ans = 0
for i,j in t.items():
    ans ^= j
print('Bob' if ans == 0 else 'Alice')
0