結果

問題 No.1700 floor X
ユーザー kept1994kept1994
提出日時 2021-11-21 23:33:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 1,253 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 77,168 KB
最終ジャッジ日時 2024-07-03 10:50:25
合計ジャッジ時間 6,158 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,340 KB
testcase_01 AC 101 ms
76,288 KB
testcase_02 AC 100 ms
76,772 KB
testcase_03 AC 101 ms
76,780 KB
testcase_04 AC 104 ms
76,608 KB
testcase_05 AC 102 ms
76,488 KB
testcase_06 AC 103 ms
76,384 KB
testcase_07 AC 102 ms
76,232 KB
testcase_08 AC 99 ms
76,472 KB
testcase_09 AC 99 ms
76,552 KB
testcase_10 AC 100 ms
76,360 KB
testcase_11 AC 102 ms
76,572 KB
testcase_12 AC 102 ms
76,624 KB
testcase_13 AC 102 ms
76,352 KB
testcase_14 AC 102 ms
76,496 KB
testcase_15 AC 102 ms
76,236 KB
testcase_16 AC 105 ms
76,284 KB
testcase_17 AC 102 ms
76,752 KB
testcase_18 AC 100 ms
76,472 KB
testcase_19 AC 99 ms
76,416 KB
testcase_20 AC 102 ms
76,748 KB
testcase_21 AC 113 ms
76,480 KB
testcase_22 AC 112 ms
76,984 KB
testcase_23 AC 113 ms
76,284 KB
testcase_24 AC 111 ms
77,160 KB
testcase_25 AC 106 ms
76,464 KB
testcase_26 AC 107 ms
76,536 KB
testcase_27 AC 105 ms
76,704 KB
testcase_28 AC 108 ms
77,168 KB
testcase_29 AC 115 ms
76,708 KB
testcase_30 AC 109 ms
76,452 KB
testcase_31 AC 110 ms
76,684 KB
testcase_32 AC 107 ms
76,612 KB
testcase_33 AC 108 ms
76,600 KB
testcase_34 AC 110 ms
76,392 KB
testcase_35 AC 120 ms
76,592 KB
testcase_36 AC 117 ms
76,384 KB
testcase_37 AC 109 ms
76,620 KB
testcase_38 AC 109 ms
76,700 KB
testcase_39 AC 105 ms
76,476 KB
testcase_40 AC 109 ms
76,868 KB
testcase_41 AC 103 ms
76,580 KB
testcase_42 AC 36 ms
53,344 KB
testcase_43 AC 110 ms
76,684 KB
testcase_44 AC 107 ms
76,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
from sys import stdin

def main():
    T = int(input())
    # True ------ ok | ng ---- False
    def is_ok(k: int, nn):
        return k ** 2 <= nn

    def binSearch(ok: int, ng: int, nn):
        # print(ok, ng)              # はじめの2値の状態
        while abs(ok - ng) > 1:     # 終了条件(差が1となり境界を見つけた時)
            mid = (ok + ng) // 2
            # print("target > ", mid)
            result = is_ok(mid, nn)
            # print(result)
            if result:
                ok = mid            # midが条件を満たすならmidまではokなのでokの方を真ん中まで持っていく
            else:
                ng = mid            # midが条件を満たさないならmidまではngなのでngの方を真ん中まで持っていく
            # print(ok, ng)          # 半分に切り分ける毎の2値の状態
        return ok    # 関数呼び出し時の引数のngは絶対評価されないのでngに書く値が答えになりうるならその数マイナス1を指定する。

    for _ in range(T):
        N = int(input())
        ans = binSearch(1, 10 ** 9 + 1, N)
        print(ans)
    return
            

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