結果

問題 No.1700 floor X
ユーザー 👑 H20H20
提出日時 2021-10-08 22:22:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,805 ms / 2,000 ms
コード長 125 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 87,132 KB
実行使用メモリ 106,624 KB
最終ジャッジ日時 2023-09-16 09:14:23
合計ジャッジ時間 73,998 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 221 ms
88,628 KB
testcase_01 AC 1,805 ms
106,572 KB
testcase_02 AC 1,723 ms
101,660 KB
testcase_03 AC 1,710 ms
101,800 KB
testcase_04 AC 1,710 ms
101,536 KB
testcase_05 AC 1,702 ms
102,800 KB
testcase_06 AC 1,698 ms
101,000 KB
testcase_07 AC 1,681 ms
102,156 KB
testcase_08 AC 1,699 ms
101,660 KB
testcase_09 AC 1,674 ms
101,624 KB
testcase_10 AC 1,709 ms
102,920 KB
testcase_11 AC 1,707 ms
101,996 KB
testcase_12 AC 1,672 ms
102,656 KB
testcase_13 AC 1,670 ms
103,160 KB
testcase_14 AC 1,694 ms
101,192 KB
testcase_15 AC 1,699 ms
102,060 KB
testcase_16 AC 1,675 ms
100,244 KB
testcase_17 AC 1,686 ms
101,840 KB
testcase_18 AC 1,696 ms
102,644 KB
testcase_19 AC 1,667 ms
103,964 KB
testcase_20 AC 1,682 ms
103,152 KB
testcase_21 AC 1,659 ms
101,072 KB
testcase_22 AC 1,670 ms
102,000 KB
testcase_23 AC 1,671 ms
101,484 KB
testcase_24 AC 1,664 ms
103,952 KB
testcase_25 AC 1,648 ms
100,068 KB
testcase_26 AC 1,648 ms
102,404 KB
testcase_27 AC 1,657 ms
104,572 KB
testcase_28 AC 1,654 ms
101,316 KB
testcase_29 AC 1,658 ms
100,572 KB
testcase_30 AC 1,673 ms
102,628 KB
testcase_31 AC 1,653 ms
101,756 KB
testcase_32 AC 1,663 ms
100,476 KB
testcase_33 AC 1,649 ms
104,284 KB
testcase_34 AC 1,656 ms
101,428 KB
testcase_35 AC 1,644 ms
100,904 KB
testcase_36 AC 1,712 ms
103,812 KB
testcase_37 AC 1,660 ms
104,664 KB
testcase_38 AC 1,654 ms
101,072 KB
testcase_39 AC 1,669 ms
102,016 KB
testcase_40 AC 1,647 ms
100,876 KB
testcase_41 AC 581 ms
95,036 KB
testcase_42 AC 215 ms
89,028 KB
testcase_43 AC 1,693 ms
99,592 KB
testcase_44 AC 1,566 ms
106,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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