結果

問題 No.1700 floor X
ユーザー tentententen
提出日時 2021-10-11 13:43:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 1,303 bytes
コンパイル時間 2,247 ms
コンパイル使用メモリ 77,652 KB
実行使用メモリ 43,124 KB
最終ジャッジ日時 2024-07-03 10:41:21
合計ジャッジ時間 10,402 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,244 KB
testcase_01 AC 142 ms
40,820 KB
testcase_02 AC 140 ms
40,856 KB
testcase_03 AC 143 ms
41,348 KB
testcase_04 AC 135 ms
41,096 KB
testcase_05 AC 143 ms
41,504 KB
testcase_06 AC 144 ms
40,936 KB
testcase_07 AC 144 ms
42,516 KB
testcase_08 AC 142 ms
40,540 KB
testcase_09 AC 133 ms
41,188 KB
testcase_10 AC 142 ms
40,620 KB
testcase_11 AC 142 ms
41,248 KB
testcase_12 AC 142 ms
40,676 KB
testcase_13 AC 144 ms
41,048 KB
testcase_14 AC 133 ms
41,224 KB
testcase_15 AC 144 ms
41,048 KB
testcase_16 AC 146 ms
41,788 KB
testcase_17 AC 143 ms
40,496 KB
testcase_18 AC 143 ms
42,588 KB
testcase_19 AC 148 ms
41,920 KB
testcase_20 AC 144 ms
42,264 KB
testcase_21 AC 169 ms
43,124 KB
testcase_22 AC 163 ms
42,816 KB
testcase_23 AC 165 ms
42,664 KB
testcase_24 AC 165 ms
42,832 KB
testcase_25 AC 164 ms
43,000 KB
testcase_26 AC 162 ms
42,736 KB
testcase_27 AC 164 ms
43,124 KB
testcase_28 AC 165 ms
42,980 KB
testcase_29 AC 166 ms
42,504 KB
testcase_30 AC 166 ms
42,716 KB
testcase_31 AC 166 ms
42,664 KB
testcase_32 AC 163 ms
42,736 KB
testcase_33 AC 167 ms
42,648 KB
testcase_34 AC 166 ms
42,348 KB
testcase_35 AC 165 ms
42,920 KB
testcase_36 AC 165 ms
42,512 KB
testcase_37 AC 164 ms
42,876 KB
testcase_38 AC 165 ms
42,868 KB
testcase_39 AC 166 ms
42,392 KB
testcase_40 AC 165 ms
42,252 KB
testcase_41 AC 164 ms
42,452 KB
testcase_42 AC 52 ms
36,928 KB
testcase_43 AC 163 ms
42,480 KB
testcase_44 AC 162 ms
43,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n; i++) {
            long x = sc.nextLong();
            long left = 0;
            long right = (long)(Math.sqrt(Long.MAX_VALUE));
            while (right - left > 1) {
                long m = (left + right) / 2;
                if (m * m > x) {
                    right = m;
                } else {
                    left = m;
                }
            }
            sb.append(left).append("\n");
        }
        System.out.print(sb);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0