結果

問題 No.1700 floor X
ユーザー みーすけみーすけ
提出日時 2021-10-08 21:55:16
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 327 bytes
コンパイル時間 2,317 ms
コンパイル使用メモリ 74,640 KB
実行使用メモリ 61,536 KB
最終ジャッジ日時 2024-07-23 04:02:45
合計ジャッジ時間 20,128 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,060 KB
testcase_01 AC 615 ms
60,436 KB
testcase_02 AC 613 ms
60,536 KB
testcase_03 AC 626 ms
61,172 KB
testcase_04 AC 615 ms
60,656 KB
testcase_05 AC 628 ms
60,284 KB
testcase_06 AC 625 ms
60,720 KB
testcase_07 AC 632 ms
60,704 KB
testcase_08 AC 638 ms
60,640 KB
testcase_09 AC 626 ms
60,552 KB
testcase_10 AC 622 ms
60,296 KB
testcase_11 AC 624 ms
60,764 KB
testcase_12 AC 621 ms
60,924 KB
testcase_13 AC 628 ms
60,356 KB
testcase_14 AC 641 ms
61,040 KB
testcase_15 AC 628 ms
61,076 KB
testcase_16 AC 598 ms
60,684 KB
testcase_17 AC 612 ms
61,132 KB
testcase_18 AC 648 ms
61,328 KB
testcase_19 AC 634 ms
61,536 KB
testcase_20 AC 628 ms
60,328 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
権限があれば一括ダウンロードができます

ソースコード

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++) {
            System.out.printf("%.0f",Math.floor(Math.sqrt(sc.nextInt())));
            System.out.println();
        }
    }
}
0