結果

問題 No.1700 floor X
ユーザー merlinmerlin
提出日時 2021-10-08 21:53:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 731 bytes
コンパイル時間 2,361 ms
コンパイル使用メモリ 75,920 KB
実行使用メモリ 42,652 KB
最終ジャッジ日時 2024-07-03 10:20:56
合計ジャッジ時間 10,601 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
37,932 KB
testcase_01 AC 147 ms
41,396 KB
testcase_02 AC 145 ms
41,632 KB
testcase_03 AC 145 ms
41,440 KB
testcase_04 AC 135 ms
41,388 KB
testcase_05 AC 148 ms
41,484 KB
testcase_06 AC 146 ms
41,532 KB
testcase_07 AC 145 ms
41,656 KB
testcase_08 AC 150 ms
41,568 KB
testcase_09 AC 137 ms
41,544 KB
testcase_10 AC 143 ms
41,732 KB
testcase_11 AC 152 ms
41,480 KB
testcase_12 AC 145 ms
41,516 KB
testcase_13 AC 149 ms
41,280 KB
testcase_14 AC 138 ms
41,428 KB
testcase_15 AC 149 ms
41,660 KB
testcase_16 AC 142 ms
41,172 KB
testcase_17 AC 137 ms
41,260 KB
testcase_18 AC 137 ms
41,524 KB
testcase_19 AC 149 ms
41,452 KB
testcase_20 AC 151 ms
41,724 KB
testcase_21 AC 161 ms
41,564 KB
testcase_22 AC 160 ms
42,304 KB
testcase_23 AC 155 ms
42,264 KB
testcase_24 AC 162 ms
42,320 KB
testcase_25 AC 163 ms
42,116 KB
testcase_26 AC 163 ms
42,212 KB
testcase_27 AC 161 ms
41,996 KB
testcase_28 AC 159 ms
42,396 KB
testcase_29 AC 153 ms
42,564 KB
testcase_30 AC 160 ms
42,208 KB
testcase_31 AC 168 ms
42,400 KB
testcase_32 AC 166 ms
42,416 KB
testcase_33 AC 162 ms
41,904 KB
testcase_34 AC 163 ms
42,144 KB
testcase_35 AC 158 ms
42,576 KB
testcase_36 AC 166 ms
42,224 KB
testcase_37 AC 164 ms
42,224 KB
testcase_38 AC 160 ms
42,292 KB
testcase_39 AC 163 ms
42,652 KB
testcase_40 AC 156 ms
42,320 KB
testcase_41 AC 161 ms
42,560 KB
testcase_42 AC 71 ms
38,176 KB
testcase_43 AC 159 ms
42,112 KB
testcase_44 AC 164 ms
42,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        int t=Integer.parseInt(bu.readLine());
        while(t-->0)
        {
            long n=Long.parseLong(bu.readLine());
            long l=1,r=(int)1e9,mid,ans=l;
            while(l<=r)
            {
                mid=(l+r)>>1;
                if(mid*mid<=n)
                {
                    ans=mid;
                    l=mid+1;
                }
                else r=mid-1;
            }
            sb.append(ans+"\n");
        }
        System.out.print(sb);
    }
}
0