結果

問題 No.1700 floor X
ユーザー SKSK
提出日時 2022-12-21 15:29:40
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 132 bytes
コンパイル時間 67 ms
コンパイル使用メモリ 32,144 KB
実行使用メモリ 32,532 KB
最終ジャッジ日時 2024-04-29 03:20:42
合計ジャッジ時間 3,371 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
31,476 KB
testcase_01 AC 48 ms
31,276 KB
testcase_02 AC 49 ms
31,144 KB
testcase_03 AC 51 ms
31,156 KB
testcase_04 AC 47 ms
31,220 KB
testcase_05 AC 47 ms
31,376 KB
testcase_06 AC 48 ms
31,308 KB
testcase_07 AC 50 ms
31,576 KB
testcase_08 AC 49 ms
31,016 KB
testcase_09 AC 49 ms
30,996 KB
testcase_10 AC 52 ms
31,320 KB
testcase_11 AC 47 ms
31,516 KB
testcase_12 AC 46 ms
31,064 KB
testcase_13 AC 46 ms
31,148 KB
testcase_14 AC 48 ms
31,352 KB
testcase_15 AC 48 ms
31,372 KB
testcase_16 AC 47 ms
31,088 KB
testcase_17 AC 48 ms
31,516 KB
testcase_18 AC 54 ms
31,028 KB
testcase_19 AC 53 ms
31,216 KB
testcase_20 AC 52 ms
31,096 KB
testcase_21 AC 48 ms
31,464 KB
testcase_22 AC 48 ms
31,448 KB
testcase_23 AC 49 ms
31,252 KB
testcase_24 AC 53 ms
31,516 KB
testcase_25 AC 54 ms
31,160 KB
testcase_26 AC 49 ms
31,216 KB
testcase_27 AC 47 ms
31,380 KB
testcase_28 AC 48 ms
31,468 KB
testcase_29 AC 46 ms
31,360 KB
testcase_30 AC 47 ms
31,476 KB
testcase_31 AC 48 ms
31,040 KB
testcase_32 AC 47 ms
31,484 KB
testcase_33 AC 47 ms
31,180 KB
testcase_34 AC 48 ms
30,924 KB
testcase_35 AC 48 ms
31,288 KB
testcase_36 AC 50 ms
31,328 KB
testcase_37 AC 48 ms
31,164 KB
testcase_38 AC 54 ms
31,040 KB
testcase_39 AC 50 ms
31,032 KB
testcase_40 AC 50 ms
31,340 KB
testcase_41 AC 49 ms
31,036 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