結果

問題 No.1700 floor X
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-10-09 10:41:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,715 ms / 2,000 ms
コード長 125 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 92,672 KB
最終ジャッジ日時 2024-07-03 10:43:16
合計ジャッジ時間 72,109 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
80,128 KB
testcase_01 AC 1,681 ms
92,672 KB
testcase_02 AC 1,668 ms
90,376 KB
testcase_03 AC 1,653 ms
90,100 KB
testcase_04 AC 1,672 ms
92,492 KB
testcase_05 AC 1,670 ms
91,304 KB
testcase_06 AC 1,675 ms
90,368 KB
testcase_07 AC 1,667 ms
91,776 KB
testcase_08 AC 1,693 ms
91,996 KB
testcase_09 AC 1,631 ms
90,468 KB
testcase_10 AC 1,647 ms
91,056 KB
testcase_11 AC 1,681 ms
91,800 KB
testcase_12 AC 1,651 ms
89,484 KB
testcase_13 AC 1,660 ms
92,268 KB
testcase_14 AC 1,646 ms
91,048 KB
testcase_15 AC 1,666 ms
91,148 KB
testcase_16 AC 1,648 ms
90,416 KB
testcase_17 AC 1,642 ms
91,248 KB
testcase_18 AC 1,668 ms
90,848 KB
testcase_19 AC 1,655 ms
92,308 KB
testcase_20 AC 1,647 ms
90,304 KB
testcase_21 AC 1,602 ms
90,744 KB
testcase_22 AC 1,629 ms
90,464 KB
testcase_23 AC 1,630 ms
89,100 KB
testcase_24 AC 1,645 ms
89,364 KB
testcase_25 AC 1,643 ms
88,576 KB
testcase_26 AC 1,636 ms
90,260 KB
testcase_27 AC 1,664 ms
91,800 KB
testcase_28 AC 1,643 ms
90,068 KB
testcase_29 AC 1,628 ms
90,560 KB
testcase_30 AC 1,629 ms
90,060 KB
testcase_31 AC 1,638 ms
89,140 KB
testcase_32 AC 1,633 ms
90,168 KB
testcase_33 AC 1,628 ms
88,040 KB
testcase_34 AC 1,647 ms
90,592 KB
testcase_35 AC 1,638 ms
89,708 KB
testcase_36 AC 1,675 ms
90,380 KB
testcase_37 AC 1,646 ms
89,080 KB
testcase_38 AC 1,641 ms
89,908 KB
testcase_39 AC 1,634 ms
89,980 KB
testcase_40 AC 1,636 ms
88,472 KB
testcase_41 AC 499 ms
85,772 KB
testcase_42 AC 117 ms
80,216 KB
testcase_43 AC 1,715 ms
90,208 KB
testcase_44 AC 1,522 ms
90,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import decimal
n = int(input())
for _ in range(n):
    d = decimal.Decimal(input())
    print(int(d**decimal.Decimal("0.5")))
0