結果

問題 No.300 平方数
ユーザー YamadaYamada
提出日時 2019-01-08 11:35:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 139 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 93,452 KB
最終ジャッジ日時 2024-11-24 00:37:22
合計ジャッジ時間 34,350 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 510 ms
44,172 KB
testcase_01 AC 511 ms
43,908 KB
testcase_02 AC 749 ms
44,160 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 521 ms
44,156 KB
testcase_08 AC 522 ms
44,168 KB
testcase_09 AC 517 ms
44,036 KB
testcase_10 AC 521 ms
44,036 KB
testcase_11 AC 522 ms
43,784 KB
testcase_12 AC 518 ms
43,964 KB
testcase_13 WA -
testcase_14 AC 526 ms
43,780 KB
testcase_15 AC 514 ms
44,040 KB
testcase_16 WA -
testcase_17 AC 515 ms
44,032 KB
testcase_18 AC 543 ms
43,908 KB
testcase_19 AC 641 ms
44,204 KB
testcase_20 AC 590 ms
43,912 KB
testcase_21 AC 856 ms
44,408 KB
testcase_22 AC 833 ms
44,288 KB
testcase_23 AC 803 ms
43,912 KB
testcase_24 AC 703 ms
44,156 KB
testcase_25 WA -
testcase_26 AC 777 ms
43,780 KB
testcase_27 AC 694 ms
44,044 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 855 ms
43,780 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 746 ms
43,780 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 729 ms
43,656 KB
testcase_43 AC 833 ms
44,036 KB
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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