結果

問題 No.1700 floor X
ユーザー Takuya NoguchiTakuya Noguchi
提出日時 2021-12-13 21:01:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,776 ms / 2,000 ms
コード長 109 bytes
コンパイル時間 427 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 92,168 KB
最終ジャッジ日時 2024-07-22 20:19:18
合計ジャッジ時間 71,937 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
79,812 KB
testcase_01 AC 1,776 ms
91,156 KB
testcase_02 AC 1,734 ms
90,208 KB
testcase_03 AC 1,628 ms
89,164 KB
testcase_04 AC 1,732 ms
92,168 KB
testcase_05 AC 1,742 ms
91,016 KB
testcase_06 AC 1,646 ms
90,416 KB
testcase_07 AC 1,647 ms
91,356 KB
testcase_08 AC 1,667 ms
91,808 KB
testcase_09 AC 1,622 ms
90,064 KB
testcase_10 AC 1,653 ms
90,924 KB
testcase_11 AC 1,647 ms
91,320 KB
testcase_12 AC 1,628 ms
89,044 KB
testcase_13 AC 1,664 ms
91,388 KB
testcase_14 AC 1,668 ms
91,324 KB
testcase_15 AC 1,683 ms
90,964 KB
testcase_16 AC 1,689 ms
90,180 KB
testcase_17 AC 1,676 ms
91,744 KB
testcase_18 AC 1,687 ms
90,504 KB
testcase_19 AC 1,641 ms
91,536 KB
testcase_20 AC 1,654 ms
90,212 KB
testcase_21 AC 1,611 ms
90,436 KB
testcase_22 AC 1,622 ms
90,308 KB
testcase_23 AC 1,576 ms
87,944 KB
testcase_24 AC 1,626 ms
89,136 KB
testcase_25 AC 1,614 ms
88,208 KB
testcase_26 AC 1,616 ms
90,772 KB
testcase_27 AC 1,641 ms
90,996 KB
testcase_28 AC 1,614 ms
89,724 KB
testcase_29 AC 1,661 ms
90,316 KB
testcase_30 AC 1,611 ms
89,860 KB
testcase_31 AC 1,632 ms
88,872 KB
testcase_32 AC 1,673 ms
89,784 KB
testcase_33 AC 1,592 ms
87,552 KB
testcase_34 AC 1,618 ms
90,240 KB
testcase_35 AC 1,620 ms
89,560 KB
testcase_36 AC 1,635 ms
90,580 KB
testcase_37 AC 1,584 ms
88,840 KB
testcase_38 AC 1,593 ms
89,836 KB
testcase_39 AC 1,613 ms
89,568 KB
testcase_40 AC 1,613 ms
88,124 KB
testcase_41 AC 496 ms
85,200 KB
testcase_42 AC 111 ms
80,108 KB
testcase_43 AC 1,686 ms
89,980 KB
testcase_44 AC 1,529 ms
89,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal

for _ in range(int(input())):
    print(int(Decimal(input())**(Decimal('0.5'))))
0