結果

問題 No.1700 floor X
ユーザー AsahiAsahi
提出日時 2023-02-06 07:33:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 343 ms / 2,000 ms
コード長 805 bytes
コンパイル時間 2,490 ms
コンパイル使用メモリ 74,140 KB
実行使用メモリ 48,104 KB
最終ジャッジ日時 2024-07-04 14:05:18
合計ジャッジ時間 18,238 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,524 KB
testcase_01 AC 286 ms
47,908 KB
testcase_02 AC 289 ms
47,304 KB
testcase_03 AC 296 ms
47,504 KB
testcase_04 AC 292 ms
47,596 KB
testcase_05 AC 296 ms
47,848 KB
testcase_06 AC 298 ms
47,944 KB
testcase_07 AC 289 ms
47,516 KB
testcase_08 AC 288 ms
47,456 KB
testcase_09 AC 291 ms
47,704 KB
testcase_10 AC 291 ms
47,816 KB
testcase_11 AC 283 ms
47,708 KB
testcase_12 AC 283 ms
47,484 KB
testcase_13 AC 278 ms
47,596 KB
testcase_14 AC 287 ms
47,588 KB
testcase_15 AC 288 ms
47,500 KB
testcase_16 AC 284 ms
47,232 KB
testcase_17 AC 291 ms
46,352 KB
testcase_18 AC 282 ms
47,500 KB
testcase_19 AC 285 ms
47,476 KB
testcase_20 AC 289 ms
47,592 KB
testcase_21 AC 343 ms
48,040 KB
testcase_22 AC 327 ms
47,748 KB
testcase_23 AC 334 ms
47,816 KB
testcase_24 AC 325 ms
47,816 KB
testcase_25 AC 334 ms
47,680 KB
testcase_26 AC 325 ms
47,908 KB
testcase_27 AC 323 ms
47,448 KB
testcase_28 AC 337 ms
47,752 KB
testcase_29 AC 331 ms
47,712 KB
testcase_30 AC 335 ms
47,636 KB
testcase_31 AC 325 ms
47,680 KB
testcase_32 AC 338 ms
47,696 KB
testcase_33 AC 329 ms
47,976 KB
testcase_34 AC 333 ms
48,104 KB
testcase_35 AC 342 ms
47,912 KB
testcase_36 AC 323 ms
47,692 KB
testcase_37 AC 338 ms
48,020 KB
testcase_38 AC 340 ms
48,000 KB
testcase_39 AC 333 ms
47,932 KB
testcase_40 AC 326 ms
47,728 KB
testcase_41 AC 321 ms
47,820 KB
testcase_42 AC 122 ms
41,552 KB
testcase_43 AC 322 ms
47,424 KB
testcase_44 AC 337 ms
48,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;
// import java.util.stream.Stream;

class Main{
    static BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));
    static StringTokenizer st;
    static PrintWriter output = new PrintWriter(System.out);
    static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws IOException{
        int t = sc.nextInt();
        while(t-->0) {
            long n = sc.nextLong();
            long left = 1;
            long right = (long)1e9+1;
            while(right -left > 1) {
                long mid = (left + right) / 2;
                if((mid*mid) <= n) left = mid;
                else right = mid;
            }
            output.println(left);
        }
        output.flush();
    }
}
0