結果

問題 No.1700 floor X
ユーザー koba-e964koba-e964
提出日時 2021-10-08 22:52:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 295 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-07-23 06:03:35
合計ジャッジ時間 5,959 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 AC 99 ms
76,320 KB
testcase_02 AC 100 ms
76,640 KB
testcase_03 AC 99 ms
76,032 KB
testcase_04 AC 97 ms
76,264 KB
testcase_05 AC 102 ms
76,228 KB
testcase_06 AC 100 ms
76,160 KB
testcase_07 AC 101 ms
76,288 KB
testcase_08 AC 100 ms
76,288 KB
testcase_09 AC 98 ms
76,288 KB
testcase_10 AC 99 ms
76,032 KB
testcase_11 AC 99 ms
76,564 KB
testcase_12 AC 98 ms
76,472 KB
testcase_13 AC 102 ms
76,032 KB
testcase_14 AC 101 ms
76,672 KB
testcase_15 AC 100 ms
76,160 KB
testcase_16 AC 102 ms
76,544 KB
testcase_17 AC 103 ms
76,292 KB
testcase_18 AC 101 ms
76,404 KB
testcase_19 AC 101 ms
76,304 KB
testcase_20 AC 99 ms
76,288 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

def sq(n):
    hi = 100000001
    lo = 0
    while hi - lo > 1:
        mid = (hi + lo) // 2
        if mid * mid <= n:
            lo = mid
        else:
            hi = mid
    return lo

t = int(input())

for _ in range(t):
    n = int(input())
    print(int(sq(n)))
0