結果

問題 No.300 平方数
ユーザー rlangevin
提出日時 2023-01-05 00:12:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 1,000 ms
コード長 453 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 57,472 KB
最終ジャッジ日時 2024-11-28 04:29:20
合計ジャッジ時間 3,985 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 43
権限があれば一括ダウンロードができます

ソースコード

diff #

def factorization(n):
    arr = []
    temp = n
    for i in range(2, int(-(-n**0.5//1))+1):
        if temp%i==0:
            cnt=0
            while temp%i==0:
                cnt+=1
                temp //= i
            arr.append([i, cnt])

    if temp!=1:
        arr.append([temp, 1])

    return arr

X = int(input())
L = factorization(X)
for i in range(len(L)):
    L[i][1] = L[i][1] % 2
    
ans = 1
for a, b in L:
    ans *= a ** b
print(ans)
0