結果

問題 No.1700 floor X
ユーザー DrDrpilotDrDrpilot
提出日時 2022-02-25 13:56:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 313 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 76,716 KB
最終ジャッジ日時 2024-07-03 07:43:59
合計ジャッジ時間 7,277 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,248 KB
testcase_01 AC 91 ms
76,324 KB
testcase_02 AC 91 ms
75,816 KB
testcase_03 AC 91 ms
76,552 KB
testcase_04 AC 91 ms
76,304 KB
testcase_05 AC 95 ms
76,348 KB
testcase_06 AC 91 ms
76,112 KB
testcase_07 AC 92 ms
76,528 KB
testcase_08 AC 92 ms
75,884 KB
testcase_09 AC 91 ms
76,624 KB
testcase_10 AC 91 ms
76,036 KB
testcase_11 AC 92 ms
76,692 KB
testcase_12 AC 92 ms
76,108 KB
testcase_13 AC 90 ms
76,540 KB
testcase_14 AC 91 ms
76,224 KB
testcase_15 AC 88 ms
76,324 KB
testcase_16 AC 87 ms
76,096 KB
testcase_17 AC 87 ms
76,352 KB
testcase_18 AC 87 ms
76,032 KB
testcase_19 AC 91 ms
76,036 KB
testcase_20 AC 95 ms
76,496 KB
testcase_21 WA -
testcase_22 AC 157 ms
76,064 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 162 ms
76,292 KB
testcase_29 AC 154 ms
76,196 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 151 ms
75,596 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 35 ms
52,680 KB
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

t=int(input())
for _ in range(t):
    n=int(input())
    if n<=10**12:
        print(int(n**0.5))
    else:
        right=n;left=0
        while right-left>0.001:
            mid=(right+left)/2
            if mid**2>=n:
                right=mid
            else:
                left=mid
        print(int(left))
0