結果

問題 No.300 平方数
ユーザー shobonvipshobonvip
提出日時 2022-03-12 14:48:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 1,000 ms
コード長 244 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 59,580 KB
最終ジャッジ日時 2024-09-16 21:28:39
合計ジャッジ時間 3,478 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,456 KB
testcase_01 AC 35 ms
52,288 KB
testcase_02 AC 44 ms
58,036 KB
testcase_03 AC 36 ms
52,772 KB
testcase_04 AC 32 ms
52,324 KB
testcase_05 AC 32 ms
52,260 KB
testcase_06 AC 32 ms
52,860 KB
testcase_07 AC 32 ms
53,360 KB
testcase_08 AC 32 ms
53,120 KB
testcase_09 AC 31 ms
53,592 KB
testcase_10 AC 31 ms
52,340 KB
testcase_11 AC 36 ms
52,956 KB
testcase_12 AC 34 ms
58,008 KB
testcase_13 AC 47 ms
58,320 KB
testcase_14 AC 36 ms
58,176 KB
testcase_15 AC 39 ms
58,496 KB
testcase_16 AC 38 ms
58,360 KB
testcase_17 AC 45 ms
57,932 KB
testcase_18 AC 34 ms
58,740 KB
testcase_19 AC 38 ms
58,048 KB
testcase_20 AC 36 ms
57,916 KB
testcase_21 AC 44 ms
57,568 KB
testcase_22 AC 46 ms
58,360 KB
testcase_23 AC 46 ms
57,576 KB
testcase_24 AC 41 ms
57,728 KB
testcase_25 AC 46 ms
58,124 KB
testcase_26 AC 44 ms
57,728 KB
testcase_27 AC 40 ms
58,112 KB
testcase_28 AC 44 ms
57,916 KB
testcase_29 AC 47 ms
58,048 KB
testcase_30 AC 47 ms
58,112 KB
testcase_31 AC 48 ms
58,456 KB
testcase_32 AC 42 ms
58,420 KB
testcase_33 AC 40 ms
58,464 KB
testcase_34 AC 47 ms
58,788 KB
testcase_35 AC 41 ms
57,836 KB
testcase_36 AC 43 ms
58,200 KB
testcase_37 AC 41 ms
58,544 KB
testcase_38 AC 44 ms
58,124 KB
testcase_39 AC 58 ms
58,456 KB
testcase_40 AC 44 ms
57,884 KB
testcase_41 AC 40 ms
58,340 KB
testcase_42 AC 43 ms
57,920 KB
testcase_43 AC 48 ms
57,536 KB
testcase_44 AC 43 ms
57,932 KB
testcase_45 AC 40 ms
59,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def pfact(m):
	pf = {}
	for i in range(2,int(m**0.5)+1):
		while m%i == 0:
			pf[i] = pf.get(i,0) + 1
			m //= i
	if m>1 : pf[m]=1
	return pf


x = int(input())
j = pfact(x)

ans = 1
for i, r in j.items():
	if r % 2 == 1:
		ans *= i

print(ans)
0