結果

問題 No.300 平方数
ユーザー yansi819yansi819
提出日時 2024-05-21 11:21:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 1,000 ms
コード長 345 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,620 KB
実行使用メモリ 59,180 KB
最終ジャッジ日時 2024-05-21 11:21:44
合計ジャッジ時間 3,926 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,824 KB
testcase_01 AC 36 ms
54,244 KB
testcase_02 AC 47 ms
58,080 KB
testcase_03 AC 37 ms
52,492 KB
testcase_04 AC 36 ms
52,500 KB
testcase_05 AC 37 ms
53,440 KB
testcase_06 AC 36 ms
53,024 KB
testcase_07 AC 37 ms
53,352 KB
testcase_08 AC 36 ms
52,468 KB
testcase_09 AC 37 ms
52,584 KB
testcase_10 AC 36 ms
53,244 KB
testcase_11 AC 36 ms
52,680 KB
testcase_12 AC 39 ms
58,232 KB
testcase_13 AC 50 ms
57,516 KB
testcase_14 AC 40 ms
58,132 KB
testcase_15 AC 46 ms
57,844 KB
testcase_16 AC 44 ms
57,680 KB
testcase_17 AC 52 ms
58,988 KB
testcase_18 AC 40 ms
57,996 KB
testcase_19 AC 43 ms
58,444 KB
testcase_20 AC 41 ms
59,148 KB
testcase_21 AC 52 ms
57,800 KB
testcase_22 AC 50 ms
57,592 KB
testcase_23 AC 49 ms
57,292 KB
testcase_24 AC 46 ms
57,928 KB
testcase_25 AC 50 ms
57,724 KB
testcase_26 AC 48 ms
57,384 KB
testcase_27 AC 44 ms
58,088 KB
testcase_28 AC 49 ms
57,360 KB
testcase_29 AC 49 ms
58,416 KB
testcase_30 AC 50 ms
57,452 KB
testcase_31 AC 51 ms
58,644 KB
testcase_32 AC 48 ms
58,456 KB
testcase_33 AC 43 ms
58,076 KB
testcase_34 AC 50 ms
58,116 KB
testcase_35 AC 46 ms
58,388 KB
testcase_36 AC 47 ms
59,164 KB
testcase_37 AC 45 ms
58,320 KB
testcase_38 AC 47 ms
59,180 KB
testcase_39 AC 48 ms
58,776 KB
testcase_40 AC 46 ms
57,796 KB
testcase_41 AC 41 ms
57,796 KB
testcase_42 AC 46 ms
57,936 KB
testcase_43 AC 49 ms
58,392 KB
testcase_44 AC 47 ms
58,172 KB
testcase_45 AC 43 ms
58,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def prime_factors(N):
    res = {}
    for i in range(2, int(N ** 0.5) + 1):
        while N % i == 0:
            res.setdefault(i, 0)
            res[i] += 1
            N //= i
    if N != 1:
        res[N] = 1
    return res

X = int(input())
pf = prime_factors(X)
Y = 1
for p, e in pf.items():
    Y *= pow(p, (e + 1) // 2 * 2 - e)
print(Y)
0