結果

問題 No.300 平方数
ユーザー 双六双六
提出日時 2020-07-23 17:35:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 1,000 ms
コード長 891 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 86,884 KB
実行使用メモリ 90,060 KB
最終ジャッジ日時 2023-09-05 22:27:01
合計ジャッジ時間 8,518 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
89,900 KB
testcase_01 AC 131 ms
89,800 KB
testcase_02 AC 130 ms
89,664 KB
testcase_03 AC 130 ms
89,440 KB
testcase_04 AC 128 ms
89,800 KB
testcase_05 AC 131 ms
89,728 KB
testcase_06 AC 130 ms
89,884 KB
testcase_07 AC 128 ms
89,644 KB
testcase_08 AC 129 ms
89,660 KB
testcase_09 AC 129 ms
89,824 KB
testcase_10 AC 127 ms
89,804 KB
testcase_11 AC 132 ms
89,648 KB
testcase_12 AC 130 ms
89,672 KB
testcase_13 AC 131 ms
89,688 KB
testcase_14 AC 128 ms
89,432 KB
testcase_15 AC 132 ms
89,440 KB
testcase_16 AC 126 ms
89,436 KB
testcase_17 AC 126 ms
89,432 KB
testcase_18 AC 127 ms
89,892 KB
testcase_19 AC 131 ms
89,884 KB
testcase_20 AC 132 ms
90,060 KB
testcase_21 AC 134 ms
89,716 KB
testcase_22 AC 130 ms
89,644 KB
testcase_23 AC 129 ms
89,984 KB
testcase_24 AC 130 ms
89,828 KB
testcase_25 AC 129 ms
89,672 KB
testcase_26 AC 127 ms
89,828 KB
testcase_27 AC 127 ms
89,720 KB
testcase_28 AC 128 ms
90,060 KB
testcase_29 AC 128 ms
89,720 KB
testcase_30 AC 131 ms
89,716 KB
testcase_31 AC 134 ms
89,748 KB
testcase_32 AC 133 ms
89,824 KB
testcase_33 AC 141 ms
89,844 KB
testcase_34 AC 127 ms
89,896 KB
testcase_35 AC 127 ms
89,808 KB
testcase_36 AC 127 ms
89,640 KB
testcase_37 AC 127 ms
89,748 KB
testcase_38 AC 133 ms
89,644 KB
testcase_39 AC 131 ms
89,660 KB
testcase_40 AC 128 ms
89,884 KB
testcase_41 AC 131 ms
89,868 KB
testcase_42 AC 130 ms
89,888 KB
testcase_43 AC 127 ms
89,888 KB
testcase_44 AC 130 ms
89,436 KB
testcase_45 AC 128 ms
89,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

#篩
num = 10 ** 6 + 1 #適当に値を入れる
L = [1 for i in range(num)]; L[0] = 0; L[1] = 0
plist = []
for i in range(num):
	if L[i] == 1:
		plist.append(i); c = 2
		while i * c <= num - 1:
			L[i * c] = 0; c += 1

#素因数分解の結果を辞書型として返す
def prime_factorization(N):
	D = defaultdict(int)
	for i in plist:
		while N % i == 0:
			D[i] += 1; N = int(N // i)

	#num以上の素数が含まれているケースの処理
	if N != 1:
		D[N] += 1

	return D

#処理内容
def main():
	X = int(input())
	fac = prime_factorization(X)
	ans = 1
	for key, value in fac.items():
		if value % 2 == 1:
			ans *= key

	print(ans)

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