結果

問題 No.1700 floor X
ユーザー みーすけみーすけ
提出日時 2021-10-08 22:27:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 460 bytes
コンパイル時間 2,071 ms
コンパイル使用メモリ 73,968 KB
実行使用メモリ 59,584 KB
最終ジャッジ日時 2024-07-23 05:05:25
合計ジャッジ時間 21,467 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 377 ms
59,148 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 383 ms
59,096 KB
testcase_09 AC 378 ms
59,096 KB
testcase_10 AC 379 ms
59,040 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 388 ms
58,884 KB
testcase_15 AC 385 ms
58,872 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 389 ms
58,840 KB
testcase_20 WA -
testcase_21 AC 432 ms
58,904 KB
testcase_22 AC 420 ms
59,212 KB
testcase_23 AC 425 ms
58,952 KB
testcase_24 AC 420 ms
59,540 KB
testcase_25 AC 415 ms
59,168 KB
testcase_26 AC 417 ms
59,200 KB
testcase_27 AC 424 ms
59,184 KB
testcase_28 AC 407 ms
59,308 KB
testcase_29 AC 400 ms
58,116 KB
testcase_30 AC 414 ms
58,396 KB
testcase_31 AC 408 ms
59,108 KB
testcase_32 AC 426 ms
59,164 KB
testcase_33 AC 417 ms
59,164 KB
testcase_34 AC 432 ms
58,812 KB
testcase_35 AC 403 ms
59,244 KB
testcase_36 AC 408 ms
59,112 KB
testcase_37 AC 419 ms
59,152 KB
testcase_38 AC 434 ms
59,584 KB
testcase_39 AC 431 ms
59,268 KB
testcase_40 AC 410 ms
59,448 KB
testcase_41 AC 403 ms
59,252 KB
testcase_42 AC 130 ms
54,000 KB
testcase_43 AC 412 ms
59,228 KB
testcase_44 AC 389 ms
59,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

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

}
0