結果

問題 No.1700 floor X
ユーザー chineristACchineristAC
提出日時 2021-10-08 21:53:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,528 KB
最終ジャッジ日時 2024-07-03 10:19:59
合計ジャッジ時間 4,449 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,552 KB
testcase_01 AC 54 ms
70,400 KB
testcase_02 AC 56 ms
70,272 KB
testcase_03 AC 54 ms
70,144 KB
testcase_04 AC 56 ms
70,016 KB
testcase_05 AC 59 ms
71,168 KB
testcase_06 AC 62 ms
70,400 KB
testcase_07 AC 56 ms
69,760 KB
testcase_08 AC 57 ms
70,016 KB
testcase_09 AC 59 ms
71,296 KB
testcase_10 AC 59 ms
71,296 KB
testcase_11 AC 57 ms
70,144 KB
testcase_12 AC 57 ms
69,760 KB
testcase_13 AC 57 ms
70,400 KB
testcase_14 AC 57 ms
71,296 KB
testcase_15 AC 58 ms
70,272 KB
testcase_16 AC 58 ms
70,144 KB
testcase_17 AC 59 ms
69,632 KB
testcase_18 AC 54 ms
69,888 KB
testcase_19 AC 56 ms
70,016 KB
testcase_20 AC 57 ms
70,016 KB
testcase_21 AC 73 ms
77,420 KB
testcase_22 AC 74 ms
77,528 KB
testcase_23 AC 76 ms
77,184 KB
testcase_24 AC 77 ms
77,272 KB
testcase_25 AC 76 ms
77,056 KB
testcase_26 AC 71 ms
77,056 KB
testcase_27 AC 73 ms
77,256 KB
testcase_28 AC 72 ms
77,120 KB
testcase_29 AC 74 ms
77,048 KB
testcase_30 AC 73 ms
77,044 KB
testcase_31 AC 74 ms
77,056 KB
testcase_32 AC 73 ms
77,252 KB
testcase_33 AC 74 ms
76,928 KB
testcase_34 AC 73 ms
77,172 KB
testcase_35 AC 73 ms
77,056 KB
testcase_36 AC 74 ms
77,056 KB
testcase_37 AC 74 ms
77,056 KB
testcase_38 AC 74 ms
76,956 KB
testcase_39 AC 77 ms
76,928 KB
testcase_40 AC 78 ms
77,056 KB
testcase_41 AC 75 ms
77,184 KB
testcase_42 AC 43 ms
55,552 KB
testcase_43 AC 73 ms
77,200 KB
testcase_44 AC 75 ms
77,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random
from collections import deque
from heapq import heappush,heappop

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

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

    ok = 0
    ng = N+1
    while ng-ok>1:
        mid = (ok+ng)//2
        if mid*mid <= N:
            ok = mid
        else:
            ng = mid
    
    print(ok)
0