結果

問題 No.1700 floor X
ユーザー ripityripity
提出日時 2021-12-14 22:43:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 709 bytes
コンパイル時間 2,443 ms
コンパイル使用メモリ 74,344 KB
実行使用メモリ 48,344 KB
最終ジャッジ日時 2024-07-23 19:41:42
合計ジャッジ時間 22,809 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,296 KB
testcase_01 AC 391 ms
48,000 KB
testcase_02 AC 389 ms
47,920 KB
testcase_03 AC 379 ms
47,784 KB
testcase_04 AC 388 ms
47,588 KB
testcase_05 AC 383 ms
47,668 KB
testcase_06 AC 385 ms
47,784 KB
testcase_07 AC 389 ms
47,912 KB
testcase_08 AC 398 ms
47,452 KB
testcase_09 AC 391 ms
47,640 KB
testcase_10 AC 390 ms
47,488 KB
testcase_11 AC 378 ms
47,952 KB
testcase_12 AC 379 ms
47,888 KB
testcase_13 AC 381 ms
47,844 KB
testcase_14 AC 383 ms
47,824 KB
testcase_15 AC 386 ms
47,732 KB
testcase_16 AC 382 ms
47,740 KB
testcase_17 AC 389 ms
47,756 KB
testcase_18 AC 381 ms
47,788 KB
testcase_19 AC 382 ms
47,588 KB
testcase_20 AC 383 ms
47,480 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

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 = N+1;
        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