結果

問題 No.1700 floor X
ユーザー mahiro72mahiro72
提出日時 2021-10-08 23:57:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 179 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 10,696 KB
実行使用メモリ 9,848 KB
最終ジャッジ日時 2023-09-16 09:22:24
合計ジャッジ時間 4,065 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
9,136 KB
testcase_01 AC 45 ms
9,612 KB
testcase_02 AC 45 ms
9,848 KB
testcase_03 AC 45 ms
9,472 KB
testcase_04 AC 46 ms
9,628 KB
testcase_05 AC 46 ms
9,512 KB
testcase_06 AC 45 ms
9,612 KB
testcase_07 AC 45 ms
9,484 KB
testcase_08 AC 45 ms
9,680 KB
testcase_09 AC 45 ms
9,588 KB
testcase_10 AC 45 ms
9,632 KB
testcase_11 AC 45 ms
9,732 KB
testcase_12 AC 46 ms
9,516 KB
testcase_13 AC 45 ms
9,620 KB
testcase_14 AC 44 ms
9,624 KB
testcase_15 AC 45 ms
9,508 KB
testcase_16 AC 45 ms
9,844 KB
testcase_17 AC 45 ms
9,820 KB
testcase_18 AC 45 ms
9,764 KB
testcase_19 AC 44 ms
9,636 KB
testcase_20 AC 45 ms
9,600 KB
testcase_21 AC 46 ms
9,424 KB
testcase_22 AC 46 ms
9,312 KB
testcase_23 AC 45 ms
9,428 KB
testcase_24 AC 46 ms
9,312 KB
testcase_25 AC 47 ms
9,536 KB
testcase_26 AC 47 ms
9,660 KB
testcase_27 AC 47 ms
9,532 KB
testcase_28 AC 46 ms
9,576 KB
testcase_29 AC 46 ms
9,432 KB
testcase_30 AC 46 ms
9,620 KB
testcase_31 AC 46 ms
9,548 KB
testcase_32 AC 46 ms
9,416 KB
testcase_33 AC 47 ms
9,448 KB
testcase_34 AC 46 ms
9,616 KB
testcase_35 AC 46 ms
9,340 KB
testcase_36 AC 46 ms
9,424 KB
testcase_37 AC 46 ms
9,416 KB
testcase_38 AC 47 ms
9,532 KB
testcase_39 AC 46 ms
9,432 KB
testcase_40 AC 47 ms
9,420 KB
testcase_41 AC 46 ms
9,496 KB
testcase_42 AC 21 ms
8,952 KB
testcase_43 AC 46 ms
9,520 KB
testcase_44 AC 46 ms
9,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal
import math
T = int(input())
N = [int(input())for _ in range(T)]
for n in N:
    # print(int(Decimal(str(n))**Decimal('0.5')))
    print(math.isqrt(n))
0