結果

問題 No.1700 floor X
ユーザー SKSK
提出日時 2022-12-29 16:47:06
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 152 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 32,532 KB
実行使用メモリ 32,656 KB
最終ジャッジ日時 2024-05-03 15:56:19
合計ジャッジ時間 4,387 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
31,144 KB
testcase_01 AC 60 ms
31,248 KB
testcase_02 AC 65 ms
31,408 KB
testcase_03 AC 62 ms
31,288 KB
testcase_04 AC 60 ms
31,448 KB
testcase_05 AC 61 ms
31,296 KB
testcase_06 AC 61 ms
31,016 KB
testcase_07 AC 62 ms
31,456 KB
testcase_08 AC 60 ms
31,404 KB
testcase_09 AC 62 ms
31,424 KB
testcase_10 AC 63 ms
31,520 KB
testcase_11 AC 62 ms
31,340 KB
testcase_12 AC 62 ms
31,192 KB
testcase_13 AC 59 ms
31,232 KB
testcase_14 AC 61 ms
31,060 KB
testcase_15 AC 63 ms
31,312 KB
testcase_16 AC 62 ms
31,428 KB
testcase_17 AC 61 ms
31,544 KB
testcase_18 AC 61 ms
31,696 KB
testcase_19 AC 60 ms
30,932 KB
testcase_20 AC 61 ms
31,376 KB
testcase_21 AC 62 ms
31,520 KB
testcase_22 AC 62 ms
31,404 KB
testcase_23 AC 61 ms
31,360 KB
testcase_24 AC 61 ms
31,556 KB
testcase_25 AC 62 ms
31,136 KB
testcase_26 AC 61 ms
31,208 KB
testcase_27 AC 60 ms
31,380 KB
testcase_28 AC 63 ms
31,036 KB
testcase_29 AC 63 ms
30,980 KB
testcase_30 AC 62 ms
31,252 KB
testcase_31 AC 65 ms
31,688 KB
testcase_32 AC 64 ms
31,712 KB
testcase_33 AC 65 ms
31,344 KB
testcase_34 AC 62 ms
31,228 KB
testcase_35 AC 59 ms
31,468 KB
testcase_36 AC 61 ms
31,148 KB
testcase_37 AC 63 ms
31,276 KB
testcase_38 AC 62 ms
31,212 KB
testcase_39 AC 62 ms
31,268 KB
testcase_40 AC 63 ms
31,204 KB
testcase_41 AC 58 ms
31,188 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$t = trim(fgets(STDIN));
for ($i = 0; $i < $t; $i++) {
     $n = trim(fgets(STDIN));
     $x = pow($n,0.5);
     
     echo floor($x)."\n";
}


?>
0