結果

問題 No.1700 floor X
ユーザー みーすけみーすけ
提出日時 2021-10-08 22:09:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 340 bytes
コンパイル時間 2,116 ms
コンパイル使用メモリ 71,904 KB
実行使用メモリ 68,652 KB
最終ジャッジ日時 2023-09-30 10:26:57
合計ジャッジ時間 36,758 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
56,172 KB
testcase_01 AC 664 ms
63,432 KB
testcase_02 AC 705 ms
64,084 KB
testcase_03 AC 653 ms
62,976 KB
testcase_04 AC 646 ms
63,224 KB
testcase_05 AC 690 ms
63,024 KB
testcase_06 AC 652 ms
64,316 KB
testcase_07 AC 702 ms
64,560 KB
testcase_08 AC 644 ms
63,576 KB
testcase_09 AC 639 ms
63,292 KB
testcase_10 AC 652 ms
63,384 KB
testcase_11 AC 632 ms
63,580 KB
testcase_12 AC 632 ms
65,048 KB
testcase_13 AC 642 ms
63,828 KB
testcase_14 AC 716 ms
65,572 KB
testcase_15 AC 657 ms
63,724 KB
testcase_16 AC 637 ms
63,292 KB
testcase_17 AC 662 ms
63,792 KB
testcase_18 AC 663 ms
63,780 KB
testcase_19 AC 711 ms
64,808 KB
testcase_20 AC 652 ms
63,816 KB
testcase_21 AC 770 ms
64,544 KB
testcase_22 AC 768 ms
64,836 KB
testcase_23 AC 786 ms
64,612 KB
testcase_24 AC 803 ms
64,644 KB
testcase_25 AC 799 ms
65,056 KB
testcase_26 AC 795 ms
64,460 KB
testcase_27 AC 773 ms
64,876 KB
testcase_28 AC 792 ms
64,592 KB
testcase_29 AC 786 ms
64,608 KB
testcase_30 AC 775 ms
64,748 KB
testcase_31 AC 778 ms
64,784 KB
testcase_32 AC 782 ms
62,976 KB
testcase_33 AC 771 ms
64,496 KB
testcase_34 AC 786 ms
64,796 KB
testcase_35 AC 787 ms
64,840 KB
testcase_36 AC 775 ms
64,732 KB
testcase_37 AC 773 ms
64,908 KB
testcase_38 AC 780 ms
64,636 KB
testcase_39 AC 765 ms
64,480 KB
testcase_40 AC 767 ms
64,652 KB
testcase_41 AC 729 ms
64,932 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