結果

問題 No.1700 floor X
ユーザー みーすけみーすけ
提出日時 2021-10-08 22:30:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 418 ms / 2,000 ms
コード長 471 bytes
コンパイル時間 1,870 ms
コンパイル使用メモリ 74,292 KB
実行使用メモリ 59,656 KB
最終ジャッジ日時 2024-07-03 10:33:53
合計ジャッジ時間 20,156 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
54,140 KB
testcase_01 AC 381 ms
59,196 KB
testcase_02 AC 353 ms
58,768 KB
testcase_03 AC 358 ms
59,020 KB
testcase_04 AC 391 ms
58,816 KB
testcase_05 AC 360 ms
58,956 KB
testcase_06 AC 353 ms
58,748 KB
testcase_07 AC 375 ms
59,048 KB
testcase_08 AC 354 ms
59,096 KB
testcase_09 AC 360 ms
58,720 KB
testcase_10 AC 367 ms
58,916 KB
testcase_11 AC 360 ms
58,960 KB
testcase_12 AC 358 ms
59,112 KB
testcase_13 AC 350 ms
59,308 KB
testcase_14 AC 352 ms
58,844 KB
testcase_15 AC 370 ms
58,992 KB
testcase_16 AC 355 ms
58,980 KB
testcase_17 AC 358 ms
58,780 KB
testcase_18 AC 375 ms
59,116 KB
testcase_19 AC 375 ms
58,828 KB
testcase_20 AC 353 ms
58,788 KB
testcase_21 AC 418 ms
58,976 KB
testcase_22 AC 415 ms
59,128 KB
testcase_23 AC 381 ms
57,924 KB
testcase_24 AC 417 ms
59,072 KB
testcase_25 AC 412 ms
59,356 KB
testcase_26 AC 390 ms
59,276 KB
testcase_27 AC 416 ms
59,064 KB
testcase_28 AC 404 ms
59,124 KB
testcase_29 AC 398 ms
59,364 KB
testcase_30 AC 398 ms
58,112 KB
testcase_31 AC 405 ms
59,128 KB
testcase_32 AC 409 ms
59,112 KB
testcase_33 AC 390 ms
58,908 KB
testcase_34 AC 389 ms
59,004 KB
testcase_35 AC 403 ms
59,028 KB
testcase_36 AC 396 ms
59,656 KB
testcase_37 AC 405 ms
58,872 KB
testcase_38 AC 393 ms
59,016 KB
testcase_39 AC 398 ms
59,168 KB
testcase_40 AC 384 ms
58,996 KB
testcase_41 AC 389 ms
59,264 KB
testcase_42 AC 124 ms
54,144 KB
testcase_43 AC 410 ms
58,960 KB
testcase_44 AC 386 ms
59,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int t = sc.nextInt();
        start: for (int i = 0; i < t; i++) {
            long n = sc.nextLong();
            for (long j = (int) (Math.sqrt(n) - 1); j <= n+1; j++) {
                if (j * j > n) {
                    System.out.println(j - 1);
                    continue start;
                }
            }
        }
    }

}
0