結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,256 KB
testcase_01 AC 445 ms
59,640 KB
testcase_02 AC 444 ms
60,120 KB
testcase_03 AC 454 ms
60,000 KB
testcase_04 AC 451 ms
59,828 KB
testcase_05 AC 454 ms
60,196 KB
testcase_06 AC 454 ms
59,708 KB
testcase_07 AC 453 ms
59,836 KB
testcase_08 AC 454 ms
59,724 KB
testcase_09 AC 437 ms
59,936 KB
testcase_10 AC 448 ms
59,860 KB
testcase_11 AC 451 ms
59,952 KB
testcase_12 AC 452 ms
59,760 KB
testcase_13 AC 446 ms
60,360 KB
testcase_14 AC 453 ms
60,028 KB
testcase_15 AC 458 ms
59,844 KB
testcase_16 AC 444 ms
60,064 KB
testcase_17 AC 456 ms
59,956 KB
testcase_18 AC 449 ms
58,600 KB
testcase_19 AC 449 ms
60,164 KB
testcase_20 AC 454 ms
60,236 KB
testcase_21 AC 511 ms
60,020 KB
testcase_22 AC 484 ms
59,936 KB
testcase_23 AC 480 ms
59,904 KB
testcase_24 AC 501 ms
59,760 KB
testcase_25 AC 502 ms
59,648 KB
testcase_26 AC 499 ms
59,860 KB
testcase_27 AC 499 ms
60,128 KB
testcase_28 AC 510 ms
59,760 KB
testcase_29 AC 490 ms
60,292 KB
testcase_30 AC 486 ms
59,792 KB
testcase_31 AC 496 ms
60,164 KB
testcase_32 AC 502 ms
59,780 KB
testcase_33 AC 486 ms
59,684 KB
testcase_34 AC 485 ms
59,840 KB
testcase_35 AC 510 ms
59,740 KB
testcase_36 AC 512 ms
60,692 KB
testcase_37 AC 502 ms
59,780 KB
testcase_38 AC 515 ms
59,864 KB
testcase_39 AC 510 ms
59,940 KB
testcase_40 AC 481 ms
59,980 KB
testcase_41 AC 492 ms
60,216 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();
        long[] n=new long[t];
        for (int i = 0; i < t; i++) {
            n[i]=sc.nextLong();
        }
        
        for (int i = 0; i < t; i++) {
            String result = String.format("%d", (int)Math.sqrt(n[i]));
            System.out.println(result);
        }
    }
}
0