結果

問題 No.300 平方数
ユーザー 👑 KazunKazun
提出日時 2020-08-31 14:24:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 1,000 ms
コード長 519 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 59,252 KB
最終ジャッジ日時 2024-11-15 22:42:28
合計ジャッジ時間 3,436 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,744 KB
testcase_01 AC 39 ms
52,120 KB
testcase_02 AC 42 ms
57,756 KB
testcase_03 AC 39 ms
52,276 KB
testcase_04 AC 39 ms
51,876 KB
testcase_05 AC 38 ms
52,480 KB
testcase_06 AC 39 ms
53,164 KB
testcase_07 AC 38 ms
52,368 KB
testcase_08 AC 38 ms
53,348 KB
testcase_09 AC 38 ms
53,184 KB
testcase_10 AC 40 ms
51,996 KB
testcase_11 AC 39 ms
52,332 KB
testcase_12 AC 37 ms
52,928 KB
testcase_13 AC 56 ms
57,316 KB
testcase_14 AC 39 ms
52,892 KB
testcase_15 AC 39 ms
52,432 KB
testcase_16 AC 38 ms
53,020 KB
testcase_17 AC 38 ms
53,160 KB
testcase_18 AC 38 ms
52,492 KB
testcase_19 AC 38 ms
52,748 KB
testcase_20 AC 41 ms
57,068 KB
testcase_21 AC 38 ms
52,156 KB
testcase_22 AC 38 ms
52,824 KB
testcase_23 AC 42 ms
57,808 KB
testcase_24 AC 42 ms
57,864 KB
testcase_25 AC 52 ms
57,824 KB
testcase_26 AC 44 ms
57,504 KB
testcase_27 AC 43 ms
57,812 KB
testcase_28 AC 53 ms
57,540 KB
testcase_29 AC 50 ms
59,252 KB
testcase_30 AC 42 ms
57,736 KB
testcase_31 AC 41 ms
58,072 KB
testcase_32 AC 42 ms
58,048 KB
testcase_33 AC 45 ms
58,976 KB
testcase_34 AC 54 ms
58,148 KB
testcase_35 AC 49 ms
58,228 KB
testcase_36 AC 44 ms
58,288 KB
testcase_37 AC 45 ms
58,420 KB
testcase_38 AC 41 ms
58,580 KB
testcase_39 AC 41 ms
58,452 KB
testcase_40 AC 42 ms
58,056 KB
testcase_41 AC 44 ms
57,196 KB
testcase_42 AC 39 ms
53,204 KB
testcase_43 AC 41 ms
57,592 KB
testcase_44 AC 42 ms
57,472 KB
testcase_45 AC 42 ms
58,044 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
#================================================
X=int(input())
R=Prime_Factorization(X)

Y=1
for (p,e) in R:
    if e%2:
        Y*=p

print(Y)
0