結果

問題 No.300 平方数
ユーザー matriematrie
提出日時 2020-12-27 16:21:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 70 bytes
コンパイル時間 439 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-10-01 14:45:17
合計ジャッジ時間 9,268 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,368 KB
testcase_01 AC 32 ms
10,368 KB
testcase_02 AC 31 ms
10,368 KB
testcase_03 AC 31 ms
10,368 KB
testcase_04 AC 28 ms
10,496 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 27 ms
10,496 KB
testcase_07 AC 27 ms
10,496 KB
testcase_08 WA -
testcase_09 AC 27 ms
10,496 KB
testcase_10 AC 28 ms
10,368 KB
testcase_11 AC 26 ms
10,368 KB
testcase_12 WA -
testcase_13 AC 507 ms
10,368 KB
testcase_14 WA -
testcase_15 AC 28 ms
10,368 KB
testcase_16 AC 232 ms
10,368 KB
testcase_17 AC 28 ms
10,368 KB
testcase_18 AC 28 ms
10,368 KB
testcase_19 AC 28 ms
10,368 KB
testcase_20 AC 57 ms
10,368 KB
testcase_21 AC 182 ms
10,368 KB
testcase_22 AC 84 ms
10,368 KB
testcase_23 WA -
testcase_24 AC 159 ms
10,496 KB
testcase_25 AC 416 ms
10,368 KB
testcase_26 AC 197 ms
10,368 KB
testcase_27 AC 106 ms
10,368 KB
testcase_28 AC 390 ms
10,368 KB
testcase_29 AC 447 ms
10,368 KB
testcase_30 AC 457 ms
10,496 KB
testcase_31 AC 66 ms
10,368 KB
testcase_32 AC 298 ms
10,368 KB
testcase_33 AC 185 ms
10,496 KB
testcase_34 AC 437 ms
10,368 KB
testcase_35 AC 295 ms
10,368 KB
testcase_36 AC 347 ms
10,368 KB
testcase_37 AC 297 ms
10,496 KB
testcase_38 WA -
testcase_39 AC 383 ms
10,368 KB
testcase_40 AC 328 ms
10,368 KB
testcase_41 AC 168 ms
10,496 KB
testcase_42 AC 115 ms
10,368 KB
testcase_43 WA -
testcase_44 AC 348 ms
10,496 KB
testcase_45 AC 189 ms
10,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

y=int(input())
i=2
while i*i<=y:
	if y%(i*i)<1: y//=i*i
	i+=1
print(y)
0