結果

問題 No.1700 floor X
ユーザー gr1msl3ygr1msl3y
提出日時 2021-10-08 21:52:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 281 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,744 KB
最終ジャッジ日時 2024-07-03 10:19:28
合計ジャッジ時間 5,320 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,472 KB
testcase_01 AC 83 ms
76,116 KB
testcase_02 AC 82 ms
76,200 KB
testcase_03 AC 83 ms
75,916 KB
testcase_04 AC 84 ms
76,416 KB
testcase_05 AC 83 ms
76,176 KB
testcase_06 AC 83 ms
76,260 KB
testcase_07 AC 82 ms
76,200 KB
testcase_08 AC 83 ms
76,160 KB
testcase_09 AC 84 ms
76,064 KB
testcase_10 AC 84 ms
76,132 KB
testcase_11 AC 81 ms
76,056 KB
testcase_12 AC 82 ms
76,032 KB
testcase_13 AC 82 ms
76,100 KB
testcase_14 AC 85 ms
76,160 KB
testcase_15 AC 84 ms
76,564 KB
testcase_16 AC 81 ms
76,076 KB
testcase_17 AC 84 ms
76,488 KB
testcase_18 AC 82 ms
76,032 KB
testcase_19 AC 81 ms
76,140 KB
testcase_20 AC 81 ms
76,404 KB
testcase_21 AC 86 ms
76,580 KB
testcase_22 AC 86 ms
76,544 KB
testcase_23 AC 85 ms
76,612 KB
testcase_24 AC 88 ms
76,032 KB
testcase_25 AC 89 ms
76,368 KB
testcase_26 AC 87 ms
76,160 KB
testcase_27 AC 87 ms
76,012 KB
testcase_28 AC 86 ms
76,160 KB
testcase_29 AC 87 ms
76,120 KB
testcase_30 AC 89 ms
76,160 KB
testcase_31 AC 88 ms
76,252 KB
testcase_32 AC 88 ms
76,224 KB
testcase_33 AC 88 ms
76,288 KB
testcase_34 AC 89 ms
76,160 KB
testcase_35 AC 87 ms
76,156 KB
testcase_36 AC 87 ms
76,160 KB
testcase_37 AC 86 ms
76,096 KB
testcase_38 AC 87 ms
76,032 KB
testcase_39 AC 89 ms
76,724 KB
testcase_40 AC 88 ms
76,160 KB
testcase_41 AC 82 ms
76,392 KB
testcase_42 AC 38 ms
52,352 KB
testcase_43 AC 83 ms
76,160 KB
testcase_44 AC 85 ms
76,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n):
    l = 0
    r = 10**9+1
    while r-l > 1:
        m = (l+r)//2
        if m**2 <= n:
            l = m
        else:
            r = m
    return l


T = int(input())
ans = []
for _ in range(T):
    N = int(input())
    ans.append(solve(N))

print(*ans, sep='\n')
0