結果

問題 No.1700 floor X
ユーザー SKSK
提出日時 2022-12-21 15:29:40
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 132 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 30,856 KB
実行使用メモリ 31,456 KB
最終ジャッジ日時 2024-11-18 02:49:31
合計ジャッジ時間 4,249 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
31,244 KB
testcase_01 AC 60 ms
31,328 KB
testcase_02 AC 60 ms
31,344 KB
testcase_03 AC 63 ms
31,076 KB
testcase_04 AC 60 ms
31,124 KB
testcase_05 AC 60 ms
31,304 KB
testcase_06 AC 60 ms
31,340 KB
testcase_07 AC 60 ms
31,172 KB
testcase_08 AC 60 ms
31,128 KB
testcase_09 AC 60 ms
31,220 KB
testcase_10 AC 61 ms
31,400 KB
testcase_11 AC 61 ms
31,124 KB
testcase_12 AC 60 ms
31,008 KB
testcase_13 AC 60 ms
31,404 KB
testcase_14 AC 60 ms
31,144 KB
testcase_15 AC 60 ms
31,316 KB
testcase_16 AC 60 ms
31,364 KB
testcase_17 AC 60 ms
30,968 KB
testcase_18 AC 60 ms
31,060 KB
testcase_19 AC 61 ms
31,116 KB
testcase_20 AC 60 ms
31,092 KB
testcase_21 AC 61 ms
30,992 KB
testcase_22 AC 61 ms
31,416 KB
testcase_23 AC 62 ms
31,276 KB
testcase_24 AC 61 ms
31,284 KB
testcase_25 AC 61 ms
31,452 KB
testcase_26 AC 61 ms
31,112 KB
testcase_27 AC 61 ms
31,408 KB
testcase_28 AC 61 ms
31,036 KB
testcase_29 AC 61 ms
31,000 KB
testcase_30 AC 61 ms
31,384 KB
testcase_31 AC 61 ms
31,288 KB
testcase_32 AC 61 ms
31,396 KB
testcase_33 AC 61 ms
31,336 KB
testcase_34 AC 61 ms
31,052 KB
testcase_35 AC 61 ms
31,220 KB
testcase_36 AC 61 ms
31,364 KB
testcase_37 AC 61 ms
31,456 KB
testcase_38 AC 61 ms
31,356 KB
testcase_39 AC 61 ms
31,212 KB
testcase_40 AC 61 ms
31,108 KB
testcase_41 AC 59 ms
31,180 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++) {
     $s = trim(fgets(STDIN));
     echo floor(pow($s,0.5))."\n";
}


?>
0