結果

問題 No.1700 floor X
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-10-09 10:33:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 83 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 86,760 KB
実行使用メモリ 78,536 KB
最終ジャッジ日時 2023-10-01 05:43:02
合計ジャッジ時間 9,074 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
71,456 KB
testcase_01 AC 145 ms
78,020 KB
testcase_02 AC 137 ms
78,296 KB
testcase_03 AC 136 ms
78,052 KB
testcase_04 AC 136 ms
78,284 KB
testcase_05 AC 136 ms
78,260 KB
testcase_06 AC 139 ms
78,220 KB
testcase_07 AC 136 ms
78,312 KB
testcase_08 AC 136 ms
78,260 KB
testcase_09 AC 139 ms
78,288 KB
testcase_10 AC 137 ms
78,296 KB
testcase_11 AC 139 ms
78,432 KB
testcase_12 AC 140 ms
78,260 KB
testcase_13 AC 139 ms
78,312 KB
testcase_14 AC 139 ms
78,508 KB
testcase_15 AC 137 ms
78,264 KB
testcase_16 AC 141 ms
78,276 KB
testcase_17 AC 139 ms
78,236 KB
testcase_18 AC 142 ms
77,980 KB
testcase_19 AC 138 ms
78,212 KB
testcase_20 AC 138 ms
78,276 KB
testcase_21 AC 138 ms
78,268 KB
testcase_22 AC 141 ms
78,184 KB
testcase_23 AC 140 ms
78,240 KB
testcase_24 AC 147 ms
78,260 KB
testcase_25 AC 146 ms
78,280 KB
testcase_26 AC 140 ms
78,172 KB
testcase_27 AC 142 ms
78,260 KB
testcase_28 AC 147 ms
78,176 KB
testcase_29 AC 142 ms
77,996 KB
testcase_30 AC 140 ms
78,124 KB
testcase_31 AC 146 ms
78,448 KB
testcase_32 AC 139 ms
77,900 KB
testcase_33 AC 139 ms
78,040 KB
testcase_34 AC 140 ms
78,028 KB
testcase_35 AC 138 ms
78,436 KB
testcase_36 AC 139 ms
78,012 KB
testcase_37 AC 139 ms
78,536 KB
testcase_38 AC 138 ms
78,264 KB
testcase_39 AC 139 ms
78,344 KB
testcase_40 AC 141 ms
78,204 KB
testcase_41 AC 145 ms
78,152 KB
testcase_42 AC 72 ms
71,056 KB
testcase_43 AC 138 ms
78,232 KB
testcase_44 AC 141 ms
77,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
n = int(input())
for _ in range(n):
    print(math.isqrt(int(input())))
0