結果

問題 No.300 平方数
ユーザー ayame_pyayame_py
提出日時 2015-11-13 23:42:08
言語 Python2
(2.7.18)
結果
AC  
実行時間 209 ms / 1,000 ms
コード長 356 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 38,104 KB
最終ジャッジ日時 2024-09-13 15:39:35
合計ジャッジ時間 5,195 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,812 KB
testcase_01 AC 10 ms
6,940 KB
testcase_02 AC 103 ms
27,704 KB
testcase_03 AC 11 ms
6,944 KB
testcase_04 AC 11 ms
6,944 KB
testcase_05 AC 11 ms
6,944 KB
testcase_06 AC 11 ms
6,940 KB
testcase_07 AC 10 ms
6,940 KB
testcase_08 AC 10 ms
6,940 KB
testcase_09 AC 11 ms
6,940 KB
testcase_10 AC 11 ms
6,940 KB
testcase_11 AC 11 ms
6,940 KB
testcase_12 AC 12 ms
6,944 KB
testcase_13 AC 147 ms
37,988 KB
testcase_14 AC 24 ms
9,088 KB
testcase_15 AC 81 ms
22,432 KB
testcase_16 AC 73 ms
20,608 KB
testcase_17 AC 146 ms
38,104 KB
testcase_18 AC 21 ms
8,576 KB
testcase_19 AC 63 ms
18,048 KB
testcase_20 AC 44 ms
12,928 KB
testcase_21 AC 146 ms
38,052 KB
testcase_22 AC 129 ms
34,212 KB
testcase_23 AC 133 ms
32,764 KB
testcase_24 AC 106 ms
24,188 KB
testcase_25 AC 121 ms
31,952 KB
testcase_26 AC 141 ms
29,696 KB
testcase_27 AC 100 ms
22,192 KB
testcase_28 AC 118 ms
31,628 KB
testcase_29 AC 209 ms
35,136 KB
testcase_30 AC 142 ms
35,716 KB
testcase_31 AC 151 ms
36,800 KB
testcase_32 AC 98 ms
25,040 KB
testcase_33 AC 57 ms
16,768 KB
testcase_34 AC 133 ms
34,524 KB
testcase_35 AC 90 ms
24,824 KB
testcase_36 AC 130 ms
28,072 KB
testcase_37 AC 115 ms
24,028 KB
testcase_38 AC 101 ms
27,520 KB
testcase_39 AC 113 ms
29,896 KB
testcase_40 AC 100 ms
27,032 KB
testcase_41 AC 73 ms
15,872 KB
testcase_42 AC 89 ms
24,688 KB
testcase_43 AC 134 ms
34,416 KB
testcase_44 AC 108 ms
28,360 KB
testcase_45 AC 61 ms
17,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
import math
X=int(raw_input())
N=int(X)
prime = 1
ans = 1
while(N!=1):
	tempprime = 1
	for i in range(2,int(math.sqrt(N))+2):
		if(N%i==0):
			prime = 0
			tempprime = 0
			count = 0
			while(N%i==0):
				N/=i
				count+=1
			#print i, count
			ans*=i**(count%2)
	if tempprime == 1:
		ans*=N
		break

if prime == 1: print X
else: print ans
0