結果

問題 No.300 平方数
ユーザー brthyyjpbrthyyjp
提出日時 2020-08-13 04:00:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 1,000 ms
コード長 466 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 59,128 KB
最終ジャッジ日時 2024-10-09 18:51:37
合計ジャッジ時間 4,060 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,828 KB
testcase_01 AC 36 ms
53,152 KB
testcase_02 AC 50 ms
58,120 KB
testcase_03 AC 39 ms
52,932 KB
testcase_04 AC 37 ms
53,456 KB
testcase_05 AC 37 ms
52,600 KB
testcase_06 AC 38 ms
53,404 KB
testcase_07 AC 37 ms
53,408 KB
testcase_08 AC 37 ms
52,436 KB
testcase_09 AC 37 ms
52,596 KB
testcase_10 AC 37 ms
53,144 KB
testcase_11 AC 38 ms
52,200 KB
testcase_12 AC 40 ms
57,848 KB
testcase_13 AC 55 ms
58,152 KB
testcase_14 AC 43 ms
57,952 KB
testcase_15 AC 47 ms
57,388 KB
testcase_16 AC 46 ms
58,480 KB
testcase_17 AC 54 ms
57,632 KB
testcase_18 AC 41 ms
57,560 KB
testcase_19 AC 46 ms
58,476 KB
testcase_20 AC 43 ms
58,524 KB
testcase_21 AC 54 ms
57,228 KB
testcase_22 AC 52 ms
59,060 KB
testcase_23 AC 52 ms
58,324 KB
testcase_24 AC 49 ms
58,624 KB
testcase_25 AC 51 ms
57,784 KB
testcase_26 AC 49 ms
57,556 KB
testcase_27 AC 47 ms
59,020 KB
testcase_28 AC 51 ms
58,388 KB
testcase_29 AC 53 ms
58,396 KB
testcase_30 AC 53 ms
57,964 KB
testcase_31 AC 52 ms
58,484 KB
testcase_32 AC 47 ms
58,636 KB
testcase_33 AC 44 ms
57,948 KB
testcase_34 AC 52 ms
57,504 KB
testcase_35 AC 48 ms
58,196 KB
testcase_36 AC 49 ms
58,992 KB
testcase_37 AC 47 ms
57,860 KB
testcase_38 AC 49 ms
59,004 KB
testcase_39 AC 50 ms
59,128 KB
testcase_40 AC 49 ms
58,516 KB
testcase_41 AC 46 ms
58,880 KB
testcase_42 AC 48 ms
58,032 KB
testcase_43 AC 52 ms
57,556 KB
testcase_44 AC 49 ms
58,740 KB
testcase_45 AC 45 ms
57,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x = int(input())

import math
def factorize(n):
    d = {}
    temp = int(math.sqrt(n))+1
    for i in range(2, temp):
        while n%i== 0:
            n //= i
            if i in d:
                d[i] += 1
            else:
                d[i] = 1
    if d == {}:
        d[n] = 1
    else:
        if n in d:
            d[n] += 1
        elif n != 1:
            d[n] =1
    return d

d = factorize(x)
y = 1
for k, v in d.items():
    y *= k**(v%2)
print(y)
0