結果

問題 No.1700 floor X
ユーザー Takuya NoguchiTakuya Noguchi
提出日時 2021-12-13 20:57:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 89 bytes
コンパイル時間 2,142 ms
コンパイル使用メモリ 86,600 KB
実行使用メモリ 77,720 KB
最終ジャッジ日時 2023-09-30 02:18:21
合計ジャッジ時間 11,122 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,376 KB
testcase_01 AC 124 ms
77,484 KB
testcase_02 AC 121 ms
77,540 KB
testcase_03 AC 119 ms
77,496 KB
testcase_04 AC 119 ms
77,488 KB
testcase_05 AC 124 ms
77,192 KB
testcase_06 AC 126 ms
77,576 KB
testcase_07 AC 122 ms
77,556 KB
testcase_08 AC 124 ms
77,492 KB
testcase_09 AC 119 ms
77,548 KB
testcase_10 AC 119 ms
77,492 KB
testcase_11 AC 119 ms
77,516 KB
testcase_12 AC 121 ms
77,612 KB
testcase_13 AC 122 ms
77,496 KB
testcase_14 AC 118 ms
77,468 KB
testcase_15 AC 121 ms
77,600 KB
testcase_16 AC 124 ms
77,552 KB
testcase_17 AC 119 ms
77,388 KB
testcase_18 AC 119 ms
77,512 KB
testcase_19 AC 120 ms
77,496 KB
testcase_20 AC 121 ms
77,452 KB
testcase_21 AC 120 ms
77,612 KB
testcase_22 AC 122 ms
77,560 KB
testcase_23 AC 122 ms
77,656 KB
testcase_24 AC 122 ms
77,720 KB
testcase_25 AC 120 ms
77,672 KB
testcase_26 AC 122 ms
77,292 KB
testcase_27 AC 122 ms
77,488 KB
testcase_28 AC 120 ms
77,280 KB
testcase_29 AC 122 ms
77,388 KB
testcase_30 AC 123 ms
77,556 KB
testcase_31 AC 123 ms
77,512 KB
testcase_32 AC 121 ms
77,544 KB
testcase_33 AC 121 ms
77,300 KB
testcase_34 AC 129 ms
77,540 KB
testcase_35 AC 127 ms
77,688 KB
testcase_36 AC 122 ms
77,588 KB
testcase_37 AC 120 ms
77,396 KB
testcase_38 AC 119 ms
77,368 KB
testcase_39 AC 126 ms
77,544 KB
testcase_40 AC 124 ms
77,488 KB
testcase_41 AC 124 ms
77,504 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

for _ in range(int(input())):
    print(math.floor(math.sqrt(int(input()))))
0