結果

問題 No.1700 floor X
ユーザー DrDrpilotDrDrpilot
提出日時 2022-02-25 13:57:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 305 bytes
コンパイル時間 2,406 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 76,704 KB
最終ジャッジ日時 2024-07-03 07:46:17
合計ジャッジ時間 11,466 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,880 KB
testcase_01 AC 89 ms
76,388 KB
testcase_02 AC 93 ms
76,196 KB
testcase_03 AC 92 ms
76,104 KB
testcase_04 AC 91 ms
76,572 KB
testcase_05 AC 95 ms
76,436 KB
testcase_06 AC 92 ms
76,432 KB
testcase_07 AC 92 ms
76,228 KB
testcase_08 AC 92 ms
76,704 KB
testcase_09 AC 88 ms
76,652 KB
testcase_10 AC 91 ms
76,372 KB
testcase_11 AC 91 ms
76,392 KB
testcase_12 AC 88 ms
76,312 KB
testcase_13 AC 96 ms
76,356 KB
testcase_14 AC 90 ms
76,376 KB
testcase_15 AC 91 ms
76,212 KB
testcase_16 AC 90 ms
76,248 KB
testcase_17 AC 89 ms
76,608 KB
testcase_18 AC 90 ms
76,344 KB
testcase_19 AC 90 ms
76,080 KB
testcase_20 AC 87 ms
76,632 KB
testcase_21 AC 339 ms
76,012 KB
testcase_22 AC 343 ms
76,168 KB
testcase_23 AC 336 ms
76,132 KB
testcase_24 AC 338 ms
76,352 KB
testcase_25 AC 340 ms
76,000 KB
testcase_26 AC 342 ms
75,960 KB
testcase_27 AC 345 ms
76,048 KB
testcase_28 AC 339 ms
75,944 KB
testcase_29 AC 340 ms
75,872 KB
testcase_30 AC 342 ms
76,440 KB
testcase_31 AC 340 ms
76,132 KB
testcase_32 AC 338 ms
75,940 KB
testcase_33 AC 348 ms
76,132 KB
testcase_34 AC 338 ms
75,884 KB
testcase_35 AC 354 ms
76,492 KB
testcase_36 AC 351 ms
76,036 KB
testcase_37 AC 348 ms
75,976 KB
testcase_38 AC 344 ms
76,464 KB
testcase_39 AC 350 ms
76,352 KB
testcase_40 AC 335 ms
76,012 KB
testcase_41 WA -
testcase_42 AC 34 ms
52,840 KB
testcase_43 AC 345 ms
75,928 KB
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>1:
            mid=(right+left)//2
            if mid**2>=n:
                right=mid
            else:
                left=mid
        print(left)
0