結果

問題 No.300 平方数
ユーザー しらっ亭
提出日時 2015-11-13 22:24:54
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 154 ms / 1,000 ms
コード長 539 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-13 14:37:59
合計ジャッジ時間 3,627 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 43
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
import math


def factorize(n):
    step = lambda x: 1 + (x << 2) - ((x >> 1) << 1)
    maxq = int(math.floor(math.sqrt(n)))
    d = 1
    q = n % 2 == 0 and 2 or 3
    while q <= maxq and n % q != 0:
        q = step(d)
        d += 1
    return q <= maxq and [q] + factorize(n // q) or [n]


def solve():
    X = int(input())
    fs = factorize(X)

    cs = Counter(fs)

    ans = 1
    for k in cs:
        if cs[k] % 2 == 1:
            ans *= k

    print(ans)


if __name__ == '__main__':
    solve()
0