結果

問題 No.2 素因数ゲーム
ユーザー 👑 KazunKazun
提出日時 2020-09-02 00:33:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 5,000 ms
コード長 540 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 58,188 KB
最終ジャッジ日時 2024-05-01 01:39:06
合計ジャッジ時間 2,604 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,372 KB
testcase_01 AC 32 ms
52,884 KB
testcase_02 AC 32 ms
52,192 KB
testcase_03 AC 32 ms
52,468 KB
testcase_04 AC 32 ms
52,864 KB
testcase_05 AC 35 ms
52,892 KB
testcase_06 AC 34 ms
52,488 KB
testcase_07 AC 33 ms
52,496 KB
testcase_08 AC 35 ms
58,124 KB
testcase_09 AC 32 ms
52,524 KB
testcase_10 AC 31 ms
53,228 KB
testcase_11 AC 32 ms
53,220 KB
testcase_12 AC 30 ms
53,684 KB
testcase_13 AC 31 ms
53,136 KB
testcase_14 AC 32 ms
52,788 KB
testcase_15 AC 33 ms
57,184 KB
testcase_16 AC 37 ms
57,604 KB
testcase_17 AC 33 ms
52,548 KB
testcase_18 AC 32 ms
53,336 KB
testcase_19 AC 35 ms
58,188 KB
testcase_20 AC 35 ms
57,936 KB
testcase_21 AC 34 ms
58,188 KB
testcase_22 AC 35 ms
57,180 KB
testcase_23 AC 32 ms
52,196 KB
testcase_24 AC 37 ms
57,628 KB
testcase_25 AC 36 ms
57,380 KB
testcase_26 AC 31 ms
52,672 KB
testcase_27 AC 31 ms
52,128 KB
testcase_28 AC 31 ms
52,308 KB
testcase_29 AC 31 ms
53,204 KB
testcase_30 AC 33 ms
58,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#素因数分解
def Prime_Factorization(N):
    if N<0:
        R=[[-1,1]]
    else:
        R=[]

    N=abs(N)
    k=2
    while k*k<=N:
        if N%k==0:
            C=0
            while N%k==0:
                C+=1
                N//=k
            R.append([k,C])
        k+=1

    if N!=1:
        R.append([N,1])
    if not R:
        R.append([N,1])

    return R
#================================================
N=int(input())
R=Prime_Factorization(N)

A=0
for _,e in R:
    A^=e

if A:
    print("Alice")
else:
    print("Bob")
0