結果

問題 No.300 平方数
ユーザー mkawa2mkawa2
提出日時 2020-02-06 22:53:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 126 ms / 1,000 ms
コード長 663 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-25 06:56:38
合計ジャッジ時間 3,603 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 126 ms
10,624 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 29 ms
10,752 KB
testcase_19 AC 29 ms
10,752 KB
testcase_20 AC 32 ms
10,624 KB
testcase_21 AC 29 ms
10,624 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 38 ms
10,624 KB
testcase_24 AC 46 ms
10,624 KB
testcase_25 AC 107 ms
10,752 KB
testcase_26 AC 55 ms
10,624 KB
testcase_27 AC 45 ms
10,752 KB
testcase_28 AC 107 ms
10,624 KB
testcase_29 AC 91 ms
10,624 KB
testcase_30 AC 34 ms
10,624 KB
testcase_31 AC 35 ms
10,624 KB
testcase_32 AC 34 ms
10,624 KB
testcase_33 AC 61 ms
10,624 KB
testcase_34 AC 114 ms
10,624 KB
testcase_35 AC 85 ms
10,752 KB
testcase_36 AC 50 ms
10,752 KB
testcase_37 AC 52 ms
10,752 KB
testcase_38 AC 30 ms
10,624 KB
testcase_39 AC 30 ms
10,624 KB
testcase_40 AC 30 ms
10,624 KB
testcase_41 AC 47 ms
10,624 KB
testcase_42 AC 30 ms
10,624 KB
testcase_43 AC 31 ms
10,624 KB
testcase_44 AC 31 ms
10,624 KB
testcase_45 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 6)
def II(): return int(sys.stdin.readline())

def PrimeFactorization(x):
    def plist(x):
        if x < 2: return []
        if x & 1 == 0: return [2] + plist(x // 2)
        for p in range(3, x + 1, 2):
            if x % p == 0: return [p] + plist(x // p)
            if p ** 2 > x: return [x]

    pl = plist(x)
    pp, ee = [], []
    for p in pl:
        if not pp or p != pp[-1]:
            pp += [p]
            ee += [0]
        ee[-1] += 1
    return [(p, e) for p, e in zip(pp, ee)]

def main():
    x=II()
    pe=PrimeFactorization(x)
    ans=1
    for p,e in pe:
        if e%2:ans*=p
    print(ans)

main()
0