結果

問題 No.1700 floor X
ユーザー kamomekamome
提出日時 2022-07-31 13:05:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 96 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 10,512 KB
実行使用メモリ 29,668 KB
最終ジャッジ日時 2023-09-28 04:04:19
合計ジャッジ時間 14,319 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
29,568 KB
testcase_01 AC 188 ms
29,544 KB
testcase_02 AC 190 ms
29,488 KB
testcase_03 AC 192 ms
29,548 KB
testcase_04 AC 199 ms
29,492 KB
testcase_05 AC 193 ms
29,564 KB
testcase_06 AC 195 ms
29,504 KB
testcase_07 AC 194 ms
29,472 KB
testcase_08 AC 198 ms
29,504 KB
testcase_09 AC 198 ms
29,492 KB
testcase_10 AC 188 ms
29,504 KB
testcase_11 AC 192 ms
29,524 KB
testcase_12 AC 192 ms
29,632 KB
testcase_13 AC 194 ms
29,496 KB
testcase_14 AC 196 ms
29,452 KB
testcase_15 AC 193 ms
29,632 KB
testcase_16 AC 200 ms
29,504 KB
testcase_17 AC 200 ms
29,508 KB
testcase_18 AC 201 ms
29,620 KB
testcase_19 AC 198 ms
29,504 KB
testcase_20 AC 195 ms
29,532 KB
testcase_21 AC 200 ms
29,596 KB
testcase_22 AC 201 ms
29,468 KB
testcase_23 AC 201 ms
29,604 KB
testcase_24 AC 191 ms
29,584 KB
testcase_25 AC 202 ms
29,420 KB
testcase_26 AC 192 ms
29,532 KB
testcase_27 AC 207 ms
29,496 KB
testcase_28 AC 198 ms
29,532 KB
testcase_29 AC 198 ms
29,592 KB
testcase_30 AC 189 ms
29,516 KB
testcase_31 AC 197 ms
29,464 KB
testcase_32 AC 200 ms
29,500 KB
testcase_33 AC 193 ms
29,464 KB
testcase_34 AC 189 ms
29,552 KB
testcase_35 AC 203 ms
29,568 KB
testcase_36 AC 196 ms
29,564 KB
testcase_37 AC 196 ms
29,444 KB
testcase_38 AC 193 ms
29,560 KB
testcase_39 AC 193 ms
29,592 KB
testcase_40 AC 195 ms
29,540 KB
testcase_41 AC 201 ms
29,560 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
for i in range(int(input())):
    print(int(np.floor(np.sqrt(int(input())))))
0