結果

問題 No.1700 floor X
ユーザー ripityripity
提出日時 2021-12-14 22:44:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 449 ms / 2,000 ms
コード長 726 bytes
コンパイル時間 2,094 ms
コンパイル使用メモリ 74,308 KB
実行使用メモリ 48,296 KB
最終ジャッジ日時 2024-07-03 10:51:34
合計ジャッジ時間 20,097 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,616 KB
testcase_01 AC 342 ms
47,852 KB
testcase_02 AC 359 ms
47,740 KB
testcase_03 AC 362 ms
47,876 KB
testcase_04 AC 363 ms
47,864 KB
testcase_05 AC 361 ms
47,700 KB
testcase_06 AC 355 ms
47,988 KB
testcase_07 AC 343 ms
47,492 KB
testcase_08 AC 358 ms
47,836 KB
testcase_09 AC 364 ms
47,736 KB
testcase_10 AC 362 ms
47,640 KB
testcase_11 AC 351 ms
47,544 KB
testcase_12 AC 344 ms
47,764 KB
testcase_13 AC 357 ms
47,820 KB
testcase_14 AC 357 ms
47,516 KB
testcase_15 AC 353 ms
47,932 KB
testcase_16 AC 343 ms
47,628 KB
testcase_17 AC 374 ms
47,868 KB
testcase_18 AC 361 ms
47,704 KB
testcase_19 AC 357 ms
47,908 KB
testcase_20 AC 378 ms
47,652 KB
testcase_21 AC 401 ms
47,444 KB
testcase_22 AC 449 ms
47,816 KB
testcase_23 AC 412 ms
46,916 KB
testcase_24 AC 419 ms
48,268 KB
testcase_25 AC 400 ms
47,852 KB
testcase_26 AC 409 ms
48,200 KB
testcase_27 AC 404 ms
48,032 KB
testcase_28 AC 424 ms
47,888 KB
testcase_29 AC 398 ms
47,960 KB
testcase_30 AC 411 ms
48,212 KB
testcase_31 AC 398 ms
47,784 KB
testcase_32 AC 388 ms
48,128 KB
testcase_33 AC 394 ms
47,964 KB
testcase_34 AC 438 ms
47,800 KB
testcase_35 AC 392 ms
47,764 KB
testcase_36 AC 404 ms
47,756 KB
testcase_37 AC 411 ms
47,788 KB
testcase_38 AC 408 ms
48,240 KB
testcase_39 AC 391 ms
48,288 KB
testcase_40 AC 397 ms
48,296 KB
testcase_41 AC 387 ms
47,916 KB
testcase_42 AC 112 ms
41,232 KB
testcase_43 AC 394 ms
47,832 KB
testcase_44 AC 402 ms
48,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    
    public static void main(String[] args) throws Exception {
        
        Scanner sc = new Scanner(System.in);
        int T = sc.nextInt();
        for( int i = 0; i < T; i++ ) {
            long N = sc.nextLong();
            System.out.println(isqrt(N));
        }
        
    }
    
    static long isqrt(long N) {
        
        long low = 0;
        long high = (long)Math.sqrt(N)+10;
        long mid = (low+high)/2;
        while( low < high ) {
            mid = (low+high)/2;
            if( mid*mid <= N ) {
                low = mid+1;
            }else {
                high = mid;
            }
        }
        
        return low-1;
        
    }
    
}
0