結果

問題 No.1700 floor X
ユーザー みーすけみーすけ
提出日時 2021-10-08 22:03:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 330 bytes
コンパイル時間 2,966 ms
コンパイル使用メモリ 74,644 KB
実行使用メモリ 64,676 KB
最終ジャッジ日時 2024-07-23 04:20:52
合計ジャッジ時間 43,633 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
54,296 KB
testcase_01 AC 868 ms
63,208 KB
testcase_02 AC 807 ms
63,076 KB
testcase_03 AC 804 ms
64,356 KB
testcase_04 AC 836 ms
63,468 KB
testcase_05 AC 865 ms
64,292 KB
testcase_06 AC 847 ms
64,244 KB
testcase_07 AC 819 ms
63,444 KB
testcase_08 AC 900 ms
64,072 KB
testcase_09 AC 829 ms
63,504 KB
testcase_10 AC 885 ms
64,048 KB
testcase_11 AC 866 ms
64,200 KB
testcase_12 AC 880 ms
64,144 KB
testcase_13 AC 785 ms
63,632 KB
testcase_14 AC 823 ms
63,492 KB
testcase_15 AC 853 ms
63,528 KB
testcase_16 AC 863 ms
63,500 KB
testcase_17 AC 870 ms
63,404 KB
testcase_18 AC 873 ms
63,284 KB
testcase_19 AC 823 ms
63,184 KB
testcase_20 AC 884 ms
63,336 KB
testcase_21 AC 951 ms
63,860 KB
testcase_22 AC 942 ms
64,664 KB
testcase_23 AC 964 ms
63,224 KB
testcase_24 AC 922 ms
63,832 KB
testcase_25 AC 958 ms
63,776 KB
testcase_26 AC 942 ms
63,480 KB
testcase_27 AC 941 ms
63,872 KB
testcase_28 AC 997 ms
63,448 KB
testcase_29 AC 943 ms
63,852 KB
testcase_30 AC 941 ms
63,900 KB
testcase_31 AC 985 ms
63,868 KB
testcase_32 AC 978 ms
63,588 KB
testcase_33 AC 942 ms
63,652 KB
testcase_34 AC 931 ms
63,992 KB
testcase_35 AC 978 ms
63,772 KB
testcase_36 AC 959 ms
64,356 KB
testcase_37 AC 968 ms
63,488 KB
testcase_38 AC 959 ms
63,328 KB
testcase_39 AC 948 ms
63,988 KB
testcase_40 AC 976 ms
64,084 KB
testcase_41 AC 902 ms
63,704 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

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.nextDouble())));
            System.out.println();
        }
    }
}
0