結果

問題 No.1700 floor X
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-10-09 10:41:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,783 ms / 2,000 ms
コード長 125 bytes
コンパイル時間 748 ms
コンパイル使用メモリ 87,128 KB
実行使用メモリ 106,720 KB
最終ジャッジ日時 2023-09-16 09:29:55
合計ジャッジ時間 74,904 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 218 ms
88,760 KB
testcase_01 AC 1,783 ms
106,720 KB
testcase_02 AC 1,748 ms
101,336 KB
testcase_03 AC 1,682 ms
101,900 KB
testcase_04 AC 1,710 ms
101,304 KB
testcase_05 AC 1,720 ms
103,080 KB
testcase_06 AC 1,707 ms
102,072 KB
testcase_07 AC 1,696 ms
102,248 KB
testcase_08 AC 1,699 ms
101,384 KB
testcase_09 AC 1,666 ms
102,532 KB
testcase_10 AC 1,678 ms
103,556 KB
testcase_11 AC 1,701 ms
101,684 KB
testcase_12 AC 1,669 ms
102,948 KB
testcase_13 AC 1,686 ms
102,864 KB
testcase_14 AC 1,687 ms
101,220 KB
testcase_15 AC 1,693 ms
101,784 KB
testcase_16 AC 1,716 ms
100,856 KB
testcase_17 AC 1,711 ms
102,000 KB
testcase_18 AC 1,693 ms
102,780 KB
testcase_19 AC 1,686 ms
103,832 KB
testcase_20 AC 1,692 ms
103,668 KB
testcase_21 AC 1,652 ms
100,924 KB
testcase_22 AC 1,680 ms
102,208 KB
testcase_23 AC 1,664 ms
101,672 KB
testcase_24 AC 1,676 ms
104,240 KB
testcase_25 AC 1,653 ms
100,440 KB
testcase_26 AC 1,672 ms
101,796 KB
testcase_27 AC 1,695 ms
104,560 KB
testcase_28 AC 1,655 ms
101,108 KB
testcase_29 AC 1,690 ms
100,924 KB
testcase_30 AC 1,675 ms
102,632 KB
testcase_31 AC 1,676 ms
101,680 KB
testcase_32 AC 1,783 ms
100,648 KB
testcase_33 AC 1,682 ms
104,708 KB
testcase_34 AC 1,678 ms
101,516 KB
testcase_35 AC 1,689 ms
100,936 KB
testcase_36 AC 1,668 ms
103,940 KB
testcase_37 AC 1,692 ms
103,292 KB
testcase_38 AC 1,659 ms
101,124 KB
testcase_39 AC 1,670 ms
102,064 KB
testcase_40 AC 1,647 ms
100,604 KB
testcase_41 AC 573 ms
95,260 KB
testcase_42 AC 213 ms
89,124 KB
testcase_43 AC 1,718 ms
99,828 KB
testcase_44 AC 1,550 ms
106,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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