結果

問題 No.300 平方数
ユーザー TawaraTawara
提出日時 2015-11-21 16:40:09
言語 Python2
(2.7.18)
結果
AC  
実行時間 325 ms / 1,000 ms
コード長 87 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 6,632 KB
実行使用メモリ 6,224 KB
最終ジャッジ日時 2023-10-11 18:11:06
合計ジャッジ時間 9,295 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
5,916 KB
testcase_01 AC 12 ms
6,056 KB
testcase_02 AC 224 ms
6,096 KB
testcase_03 AC 11 ms
6,012 KB
testcase_04 AC 11 ms
5,980 KB
testcase_05 AC 11 ms
5,916 KB
testcase_06 AC 11 ms
6,012 KB
testcase_07 AC 11 ms
6,164 KB
testcase_08 AC 11 ms
6,020 KB
testcase_09 AC 11 ms
6,080 KB
testcase_10 AC 11 ms
6,056 KB
testcase_11 AC 11 ms
6,004 KB
testcase_12 AC 15 ms
6,156 KB
testcase_13 AC 325 ms
5,960 KB
testcase_14 AC 41 ms
6,224 KB
testcase_15 AC 171 ms
5,980 KB
testcase_16 AC 153 ms
6,096 KB
testcase_17 AC 323 ms
5,984 KB
testcase_18 AC 37 ms
6,008 KB
testcase_19 AC 128 ms
6,008 KB
testcase_20 AC 78 ms
6,080 KB
testcase_21 AC 324 ms
5,908 KB
testcase_22 AC 289 ms
6,012 KB
testcase_23 AC 271 ms
5,916 KB
testcase_24 AC 188 ms
6,056 KB
testcase_25 AC 265 ms
6,076 KB
testcase_26 AC 242 ms
6,080 KB
testcase_27 AC 170 ms
5,964 KB
testcase_28 AC 261 ms
5,988 KB
testcase_29 AC 297 ms
5,920 KB
testcase_30 AC 307 ms
6,152 KB
testcase_31 AC 316 ms
6,096 KB
testcase_32 AC 195 ms
6,012 KB
testcase_33 AC 115 ms
5,988 KB
testcase_34 AC 290 ms
5,980 KB
testcase_35 AC 194 ms
6,016 KB
testcase_36 AC 226 ms
6,208 KB
testcase_37 AC 189 ms
6,080 KB
testcase_38 AC 222 ms
5,988 KB
testcase_39 AC 248 ms
6,088 KB
testcase_40 AC 219 ms
6,152 KB
testcase_41 AC 107 ms
5,960 KB
testcase_42 AC 195 ms
5,916 KB
testcase_43 AC 291 ms
6,152 KB
testcase_44 AC 232 ms
6,012 KB
testcase_45 AC 124 ms
6,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Z=X=input();i=Y=1
while i*i<Z:
	i+=1;c=0
	while X%i==0:c+=1;X/=i
	Y*=i**(c%2)
print Y*X
0