結果

問題 No.1700 floor X
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-10-08 21:57:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 87,228 KB
実行使用メモリ 77,392 KB
最終ジャッジ日時 2023-09-16 09:06:55
合計ジャッジ時間 5,933 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,680 KB
testcase_01 AC 86 ms
77,108 KB
testcase_02 AC 85 ms
76,884 KB
testcase_03 AC 84 ms
77,020 KB
testcase_04 AC 86 ms
77,004 KB
testcase_05 AC 86 ms
76,888 KB
testcase_06 AC 85 ms
77,052 KB
testcase_07 AC 86 ms
77,048 KB
testcase_08 AC 84 ms
76,896 KB
testcase_09 AC 85 ms
77,076 KB
testcase_10 AC 85 ms
76,960 KB
testcase_11 AC 84 ms
77,052 KB
testcase_12 AC 86 ms
77,016 KB
testcase_13 AC 84 ms
76,804 KB
testcase_14 AC 84 ms
77,172 KB
testcase_15 AC 86 ms
77,284 KB
testcase_16 AC 85 ms
77,024 KB
testcase_17 AC 85 ms
76,956 KB
testcase_18 AC 86 ms
77,092 KB
testcase_19 AC 85 ms
77,216 KB
testcase_20 AC 86 ms
77,060 KB
testcase_21 AC 86 ms
77,196 KB
testcase_22 AC 86 ms
77,220 KB
testcase_23 AC 86 ms
77,216 KB
testcase_24 AC 86 ms
77,392 KB
testcase_25 AC 87 ms
77,016 KB
testcase_26 AC 86 ms
77,216 KB
testcase_27 AC 87 ms
77,176 KB
testcase_28 AC 85 ms
77,188 KB
testcase_29 AC 85 ms
77,024 KB
testcase_30 AC 85 ms
77,288 KB
testcase_31 AC 85 ms
77,072 KB
testcase_32 AC 86 ms
77,060 KB
testcase_33 AC 86 ms
76,796 KB
testcase_34 AC 86 ms
76,964 KB
testcase_35 AC 85 ms
77,328 KB
testcase_36 AC 85 ms
77,352 KB
testcase_37 AC 87 ms
77,088 KB
testcase_38 AC 88 ms
76,964 KB
testcase_39 AC 86 ms
77,272 KB
testcase_40 AC 86 ms
77,264 KB
testcase_41 AC 86 ms
77,016 KB
testcase_42 AC 70 ms
71,632 KB
testcase_43 AC 85 ms
76,984 KB
testcase_44 AC 87 ms
77,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

"""
from sys import stdin
import sys

TT = int(input())

for loop in range(TT):

    N = int(stdin.readline())

    ans = int(N**0.5)-3

    while (ans+1)**2 <= N:
        ans += 1

    print (ans)
0