結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
31,304 KB
testcase_01 AC 60 ms
31,220 KB
testcase_02 AC 61 ms
31,412 KB
testcase_03 AC 62 ms
31,024 KB
testcase_04 AC 61 ms
31,304 KB
testcase_05 AC 61 ms
31,308 KB
testcase_06 AC 61 ms
31,388 KB
testcase_07 AC 62 ms
31,104 KB
testcase_08 AC 62 ms
31,552 KB
testcase_09 AC 61 ms
31,176 KB
testcase_10 AC 62 ms
31,148 KB
testcase_11 AC 61 ms
31,268 KB
testcase_12 AC 61 ms
31,240 KB
testcase_13 AC 61 ms
31,032 KB
testcase_14 AC 62 ms
31,392 KB
testcase_15 AC 62 ms
31,064 KB
testcase_16 AC 60 ms
31,492 KB
testcase_17 AC 62 ms
31,400 KB
testcase_18 AC 61 ms
30,948 KB
testcase_19 AC 62 ms
31,164 KB
testcase_20 AC 61 ms
31,224 KB
testcase_21 AC 61 ms
31,120 KB
testcase_22 AC 61 ms
31,312 KB
testcase_23 AC 61 ms
31,144 KB
testcase_24 AC 61 ms
31,348 KB
testcase_25 AC 61 ms
30,980 KB
testcase_26 AC 61 ms
30,888 KB
testcase_27 AC 62 ms
31,132 KB
testcase_28 AC 61 ms
31,480 KB
testcase_29 AC 61 ms
31,112 KB
testcase_30 AC 61 ms
31,084 KB
testcase_31 AC 60 ms
31,028 KB
testcase_32 AC 62 ms
30,948 KB
testcase_33 AC 61 ms
31,384 KB
testcase_34 AC 62 ms
31,328 KB
testcase_35 AC 61 ms
31,284 KB
testcase_36 AC 61 ms
31,164 KB
testcase_37 AC 61 ms
31,180 KB
testcase_38 AC 61 ms
31,280 KB
testcase_39 AC 61 ms
31,072 KB
testcase_40 AC 61 ms
31,216 KB
testcase_41 AC 59 ms
31,308 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