結果

問題 No.300 平方数
ユーザー YamadaYamada
提出日時 2019-01-08 11:36:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 138 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 69,024 KB
最終ジャッジ日時 2024-11-15 22:33:04
合計ジャッジ時間 32,723 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 494 ms
44,048 KB
testcase_02 AC 705 ms
44,168 KB
testcase_03 AC 486 ms
44,036 KB
testcase_04 AC 474 ms
44,164 KB
testcase_05 AC 467 ms
44,276 KB
testcase_06 AC 474 ms
44,428 KB
testcase_07 AC 481 ms
44,156 KB
testcase_08 AC 478 ms
44,036 KB
testcase_09 AC 479 ms
43,908 KB
testcase_10 AC 482 ms
44,048 KB
testcase_11 AC 483 ms
44,036 KB
testcase_12 AC 482 ms
44,032 KB
testcase_13 AC 842 ms
44,160 KB
testcase_14 AC 488 ms
43,900 KB
testcase_15 AC 474 ms
43,892 KB
testcase_16 AC 615 ms
44,032 KB
testcase_17 AC 472 ms
44,420 KB
testcase_18 AC 500 ms
43,900 KB
testcase_19 AC 599 ms
44,544 KB
testcase_20 AC 552 ms
44,424 KB
testcase_21 AC 797 ms
44,048 KB
testcase_22 AC 754 ms
44,292 KB
testcase_23 AC 756 ms
44,148 KB
testcase_24 AC 656 ms
44,036 KB
testcase_25 AC 750 ms
44,160 KB
testcase_26 AC 721 ms
44,276 KB
testcase_27 AC 652 ms
44,344 KB
testcase_28 AC 730 ms
44,424 KB
testcase_29 AC 785 ms
44,416 KB
testcase_30 AC 782 ms
44,168 KB
testcase_31 AC 789 ms
43,916 KB
testcase_32 AC 681 ms
44,044 KB
testcase_33 AC 581 ms
44,040 KB
testcase_34 AC 759 ms
44,296 KB
testcase_35 AC 655 ms
44,040 KB
testcase_36 AC 693 ms
44,304 KB
testcase_37 AC 656 ms
43,896 KB
testcase_38 AC 688 ms
44,172 KB
testcase_39 AC 721 ms
44,168 KB
testcase_40 AC 699 ms
44,404 KB
testcase_41 AC 571 ms
44,020 KB
testcase_42 AC 674 ms
44,296 KB
testcase_43 AC 768 ms
44,020 KB
testcase_44 AC 709 ms
43,908 KB
testcase_45 AC 589 ms
69,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
X =int(input())
M =int(np.sqrt(X))
for i in range(-M,0):
    if X %(i**2) == 0:
        print(X//(i**2))
        break
0