結果

問題 No.1700 floor X
ユーザー moharan627moharan627
提出日時 2021-10-08 22:02:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 1,407 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 77,156 KB
最終ジャッジ日時 2024-07-03 10:27:52
合計ジャッジ時間 4,949 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,632 KB
testcase_01 AC 72 ms
76,664 KB
testcase_02 AC 72 ms
76,628 KB
testcase_03 AC 71 ms
76,408 KB
testcase_04 AC 71 ms
76,660 KB
testcase_05 AC 74 ms
76,684 KB
testcase_06 AC 74 ms
76,692 KB
testcase_07 AC 75 ms
76,656 KB
testcase_08 AC 77 ms
76,692 KB
testcase_09 AC 74 ms
77,124 KB
testcase_10 AC 77 ms
76,664 KB
testcase_11 AC 73 ms
76,592 KB
testcase_12 AC 72 ms
76,592 KB
testcase_13 AC 72 ms
76,584 KB
testcase_14 AC 78 ms
77,156 KB
testcase_15 AC 72 ms
76,968 KB
testcase_16 AC 72 ms
76,672 KB
testcase_17 AC 74 ms
76,492 KB
testcase_18 AC 74 ms
76,516 KB
testcase_19 AC 74 ms
76,676 KB
testcase_20 AC 72 ms
76,660 KB
testcase_21 AC 78 ms
76,872 KB
testcase_22 AC 79 ms
76,404 KB
testcase_23 AC 77 ms
76,564 KB
testcase_24 AC 77 ms
76,256 KB
testcase_25 AC 78 ms
76,548 KB
testcase_26 AC 78 ms
76,264 KB
testcase_27 AC 78 ms
76,444 KB
testcase_28 AC 79 ms
76,868 KB
testcase_29 AC 78 ms
76,388 KB
testcase_30 AC 77 ms
76,348 KB
testcase_31 AC 78 ms
76,508 KB
testcase_32 AC 79 ms
76,512 KB
testcase_33 AC 79 ms
76,372 KB
testcase_34 AC 79 ms
76,748 KB
testcase_35 AC 78 ms
76,436 KB
testcase_36 AC 77 ms
76,304 KB
testcase_37 AC 77 ms
76,524 KB
testcase_38 AC 79 ms
76,520 KB
testcase_39 AC 81 ms
76,332 KB
testcase_40 AC 81 ms
76,784 KB
testcase_41 AC 78 ms
76,444 KB
testcase_42 AC 40 ms
55,660 KB
testcase_43 AC 80 ms
76,448 KB
testcase_44 AC 81 ms
76,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#sys.setrecursionlimit(10 ** 6)
INF = float('inf')
#10**20,2**63に変えるのもあり
MOD = 10**9 + 7
MOD2 = 998244353
from collections import defaultdict
def solve():
    def II(): return int(sys.stdin.readline())
    def LI(): return list(map(int, sys.stdin.readline().split()))
    def LC(): return list(input())
    def IC(): return [int(c) for c in input()]
    def MI(): return map(int, sys.stdin.readline().split())
    T = II()
    def meguru_bisect(ng, ok):
        """
        この条件は、問題に基づくやつじゃなくてもOK
        条件の付け方は、ngとokの広げ方をどのようにするかで決まってくる。

        負の無限~(目的値)が条件を満たす場合
        ng…条件を満たさない値の範囲での最小値
        ok…条件を満たす値の範囲での最大値
        ok < ng
        is_ok == Trueの場合、探索範囲が右半分へ
        is_ok == Falseの場合、探索範囲が左半分へ
        """
        while (abs(ok - ng) > 1):
            mid = (ok + ng) // 2
            if is_ok(mid):
                ok = mid
            else:
                ng = mid
        return ok
    for _ in range(T):
        N = II()
        def is_ok(arg):
            # 条件を満たすかどうか?問題ごとに定義
            return arg**2<=N
        print(meguru_bisect(10**10, 0))
    return
solve()
0