結果

問題 No.1700 floor X
ユーザー みーすけみーすけ
提出日時 2021-10-08 21:56:30
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 328 bytes
コンパイル時間 2,521 ms
コンパイル使用メモリ 74,656 KB
実行使用メモリ 61,784 KB
最終ジャッジ日時 2024-07-23 04:04:56
合計ジャッジ時間 32,209 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
40,412 KB
testcase_01 AC 590 ms
49,536 KB
testcase_02 AC 614 ms
48,472 KB
testcase_03 AC 619 ms
49,464 KB
testcase_04 AC 632 ms
49,332 KB
testcase_05 AC 628 ms
49,652 KB
testcase_06 AC 615 ms
50,156 KB
testcase_07 AC 625 ms
50,256 KB
testcase_08 AC 625 ms
49,640 KB
testcase_09 AC 647 ms
49,348 KB
testcase_10 AC 618 ms
49,632 KB
testcase_11 AC 646 ms
49,752 KB
testcase_12 AC 627 ms
48,984 KB
testcase_13 AC 628 ms
49,832 KB
testcase_14 AC 631 ms
49,572 KB
testcase_15 AC 645 ms
48,920 KB
testcase_16 AC 628 ms
49,192 KB
testcase_17 AC 637 ms
48,716 KB
testcase_18 AC 648 ms
49,584 KB
testcase_19 AC 645 ms
49,444 KB
testcase_20 AC 606 ms
49,032 KB
testcase_21 AC 679 ms
49,908 KB
testcase_22 AC 720 ms
50,644 KB
testcase_23 AC 675 ms
49,528 KB
testcase_24 AC 711 ms
49,432 KB
testcase_25 AC 683 ms
49,484 KB
testcase_26 AC 642 ms
49,692 KB
testcase_27 AC 659 ms
50,596 KB
testcase_28 AC 665 ms
49,592 KB
testcase_29 AC 634 ms
50,392 KB
testcase_30 AC 675 ms
49,288 KB
testcase_31 AC 631 ms
50,480 KB
testcase_32 AC 643 ms
49,312 KB
testcase_33 AC 634 ms
49,136 KB
testcase_34 AC 663 ms
50,296 KB
testcase_35 AC 659 ms
49,656 KB
testcase_36 AC 642 ms
49,280 KB
testcase_37 AC 655 ms
49,060 KB
testcase_38 AC 663 ms
50,052 KB
testcase_39 AC 656 ms
50,368 KB
testcase_40 AC 631 ms
50,452 KB
testcase_41 AC 639 ms
50,344 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.nextLong())));
            System.out.println();
        }
    }
}
0