結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,348 KB
testcase_01 AC 39 ms
53,564 KB
testcase_02 AC 38 ms
52,128 KB
testcase_03 AC 39 ms
52,460 KB
testcase_04 AC 39 ms
52,992 KB
testcase_05 AC 39 ms
52,700 KB
testcase_06 AC 39 ms
51,820 KB
testcase_07 AC 43 ms
52,884 KB
testcase_08 AC 42 ms
57,380 KB
testcase_09 AC 39 ms
53,356 KB
testcase_10 AC 39 ms
52,460 KB
testcase_11 AC 38 ms
52,000 KB
testcase_12 AC 39 ms
53,368 KB
testcase_13 AC 39 ms
52,268 KB
testcase_14 AC 39 ms
52,124 KB
testcase_15 AC 42 ms
57,796 KB
testcase_16 AC 40 ms
57,860 KB
testcase_17 AC 39 ms
53,696 KB
testcase_18 AC 39 ms
52,748 KB
testcase_19 AC 42 ms
57,944 KB
testcase_20 AC 42 ms
58,776 KB
testcase_21 AC 43 ms
57,924 KB
testcase_22 AC 41 ms
57,720 KB
testcase_23 AC 39 ms
53,128 KB
testcase_24 AC 41 ms
58,716 KB
testcase_25 AC 41 ms
57,752 KB
testcase_26 AC 40 ms
53,468 KB
testcase_27 AC 40 ms
52,332 KB
testcase_28 AC 40 ms
53,164 KB
testcase_29 AC 41 ms
52,212 KB
testcase_30 AC 42 ms
57,376 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