結果

問題 No.1700 floor X
ユーザー dangodango
提出日時 2023-06-24 21:58:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 77 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 87,240 KB
実行使用メモリ 78,608 KB
最終ジャッジ日時 2023-09-14 17:53:32
合計ジャッジ時間 9,050 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
71,356 KB
testcase_01 AC 144 ms
78,212 KB
testcase_02 AC 138 ms
78,260 KB
testcase_03 AC 139 ms
78,124 KB
testcase_04 AC 138 ms
78,424 KB
testcase_05 AC 138 ms
78,436 KB
testcase_06 AC 141 ms
78,360 KB
testcase_07 AC 139 ms
78,252 KB
testcase_08 AC 137 ms
78,404 KB
testcase_09 AC 142 ms
78,140 KB
testcase_10 AC 137 ms
78,208 KB
testcase_11 AC 140 ms
78,608 KB
testcase_12 AC 139 ms
78,380 KB
testcase_13 AC 139 ms
78,364 KB
testcase_14 AC 140 ms
78,196 KB
testcase_15 AC 138 ms
78,588 KB
testcase_16 AC 141 ms
78,496 KB
testcase_17 AC 139 ms
78,396 KB
testcase_18 AC 139 ms
78,360 KB
testcase_19 AC 138 ms
78,132 KB
testcase_20 AC 136 ms
78,216 KB
testcase_21 AC 141 ms
78,168 KB
testcase_22 AC 140 ms
78,124 KB
testcase_23 AC 141 ms
78,336 KB
testcase_24 AC 141 ms
77,992 KB
testcase_25 AC 142 ms
78,220 KB
testcase_26 AC 143 ms
78,380 KB
testcase_27 AC 143 ms
78,220 KB
testcase_28 AC 142 ms
78,484 KB
testcase_29 AC 144 ms
78,464 KB
testcase_30 AC 146 ms
78,332 KB
testcase_31 AC 142 ms
78,552 KB
testcase_32 AC 142 ms
78,244 KB
testcase_33 AC 143 ms
78,332 KB
testcase_34 AC 143 ms
78,284 KB
testcase_35 AC 142 ms
78,180 KB
testcase_36 AC 142 ms
78,304 KB
testcase_37 AC 144 ms
78,460 KB
testcase_38 AC 145 ms
78,196 KB
testcase_39 AC 143 ms
78,204 KB
testcase_40 AC 142 ms
78,236 KB
testcase_41 AC 142 ms
78,380 KB
testcase_42 AC 74 ms
71,252 KB
testcase_43 AC 142 ms
78,328 KB
testcase_44 AC 142 ms
78,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
for i in range(int(input())):
    print(math.isqrt(int(input())))
0