結果

問題 No.1700 floor X
ユーザー tamatotamato
提出日時 2021-10-08 21:52:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 471 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 76,688 KB
最終ジャッジ日時 2024-07-03 10:19:14
合計ジャッジ時間 4,316 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,352 KB
testcase_01 AC 66 ms
76,116 KB
testcase_02 AC 61 ms
76,056 KB
testcase_03 AC 60 ms
76,160 KB
testcase_04 AC 59 ms
76,204 KB
testcase_05 AC 62 ms
76,160 KB
testcase_06 AC 69 ms
76,116 KB
testcase_07 AC 63 ms
76,416 KB
testcase_08 AC 62 ms
76,032 KB
testcase_09 AC 61 ms
76,288 KB
testcase_10 AC 61 ms
76,416 KB
testcase_11 AC 61 ms
76,288 KB
testcase_12 AC 62 ms
76,288 KB
testcase_13 AC 60 ms
75,904 KB
testcase_14 AC 60 ms
76,160 KB
testcase_15 AC 60 ms
75,904 KB
testcase_16 AC 61 ms
76,032 KB
testcase_17 AC 61 ms
76,264 KB
testcase_18 AC 61 ms
76,320 KB
testcase_19 AC 58 ms
76,416 KB
testcase_20 AC 58 ms
76,416 KB
testcase_21 AC 67 ms
76,160 KB
testcase_22 AC 70 ms
76,416 KB
testcase_23 AC 67 ms
76,148 KB
testcase_24 AC 67 ms
76,032 KB
testcase_25 AC 72 ms
76,288 KB
testcase_26 AC 72 ms
76,416 KB
testcase_27 AC 67 ms
76,172 KB
testcase_28 AC 70 ms
76,500 KB
testcase_29 AC 68 ms
76,500 KB
testcase_30 AC 71 ms
76,288 KB
testcase_31 AC 70 ms
75,904 KB
testcase_32 AC 70 ms
76,160 KB
testcase_33 AC 70 ms
76,032 KB
testcase_34 AC 71 ms
76,240 KB
testcase_35 AC 67 ms
76,108 KB
testcase_36 AC 68 ms
76,416 KB
testcase_37 AC 68 ms
76,032 KB
testcase_38 AC 67 ms
76,156 KB
testcase_39 AC 69 ms
76,416 KB
testcase_40 AC 66 ms
76,324 KB
testcase_41 AC 64 ms
76,416 KB
testcase_42 AC 35 ms
52,224 KB
testcase_43 AC 62 ms
76,160 KB
testcase_44 AC 62 ms
76,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.buffer.readline

    def sqrt(n):
        ok = 1
        ng = 10**9+1
        mid = (ok+ng) // 2
        while ng - ok > 1:
            if mid*mid > n:
                ng = mid
            else:
                ok = mid
            mid = (ok+ng)//2
        return ok

    for _ in range(int(input())):
        N = int(input())
        print(sqrt(N))


if __name__ == '__main__':
    main()
0