結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
54,432 KB
testcase_01 AC 731 ms
62,876 KB
testcase_02 AC 690 ms
62,924 KB
testcase_03 AC 703 ms
62,360 KB
testcase_04 AC 672 ms
63,632 KB
testcase_05 AC 699 ms
62,344 KB
testcase_06 AC 706 ms
62,780 KB
testcase_07 AC 683 ms
62,468 KB
testcase_08 AC 704 ms
62,524 KB
testcase_09 AC 692 ms
62,968 KB
testcase_10 AC 717 ms
64,732 KB
testcase_11 AC 716 ms
62,788 KB
testcase_12 AC 673 ms
63,632 KB
testcase_13 AC 642 ms
62,664 KB
testcase_14 AC 698 ms
62,716 KB
testcase_15 AC 698 ms
63,160 KB
testcase_16 AC 696 ms
62,608 KB
testcase_17 AC 711 ms
62,544 KB
testcase_18 AC 673 ms
63,340 KB
testcase_19 AC 694 ms
62,952 KB
testcase_20 AC 712 ms
62,768 KB
testcase_21 AC 806 ms
63,424 KB
testcase_22 AC 783 ms
62,788 KB
testcase_23 AC 812 ms
63,232 KB
testcase_24 AC 815 ms
62,860 KB
testcase_25 AC 813 ms
62,952 KB
testcase_26 AC 845 ms
63,540 KB
testcase_27 AC 801 ms
62,976 KB
testcase_28 AC 774 ms
63,564 KB
testcase_29 AC 801 ms
62,784 KB
testcase_30 AC 805 ms
63,028 KB
testcase_31 AC 805 ms
62,880 KB
testcase_32 AC 802 ms
63,036 KB
testcase_33 AC 822 ms
63,136 KB
testcase_34 AC 812 ms
63,184 KB
testcase_35 AC 774 ms
63,356 KB
testcase_36 AC 807 ms
63,208 KB
testcase_37 AC 788 ms
63,332 KB
testcase_38 AC 788 ms
62,704 KB
testcase_39 AC 808 ms
62,676 KB
testcase_40 AC 794 ms
63,172 KB
testcase_41 AC 725 ms
62,804 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++) {
            String result = String.format("%d", (int)Math.sqrt(sc.nextDouble()));
            System.out.println(result);
        }
    }
}
0