結果

問題 No.1700 floor X
ユーザー H20H20
提出日時 2021-10-08 22:22:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,678 ms / 2,000 ms
コード長 125 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 92,928 KB
最終ジャッジ日時 2024-07-03 10:31:43
合計ジャッジ時間 70,781 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
80,000 KB
testcase_01 AC 1,678 ms
92,900 KB
testcase_02 AC 1,642 ms
90,144 KB
testcase_03 AC 1,627 ms
90,056 KB
testcase_04 AC 1,660 ms
92,452 KB
testcase_05 AC 1,648 ms
91,376 KB
testcase_06 AC 1,630 ms
90,492 KB
testcase_07 AC 1,634 ms
91,728 KB
testcase_08 AC 1,643 ms
91,884 KB
testcase_09 AC 1,617 ms
90,580 KB
testcase_10 AC 1,644 ms
91,032 KB
testcase_11 AC 1,665 ms
91,372 KB
testcase_12 AC 1,620 ms
89,416 KB
testcase_13 AC 1,640 ms
91,992 KB
testcase_14 AC 1,625 ms
90,948 KB
testcase_15 AC 1,659 ms
90,888 KB
testcase_16 AC 1,634 ms
90,268 KB
testcase_17 AC 1,634 ms
91,256 KB
testcase_18 AC 1,650 ms
90,716 KB
testcase_19 AC 1,669 ms
92,928 KB
testcase_20 AC 1,639 ms
90,204 KB
testcase_21 AC 1,638 ms
90,684 KB
testcase_22 AC 1,607 ms
90,436 KB
testcase_23 AC 1,595 ms
88,976 KB
testcase_24 AC 1,612 ms
89,480 KB
testcase_25 AC 1,591 ms
88,584 KB
testcase_26 AC 1,595 ms
90,752 KB
testcase_27 AC 1,611 ms
91,072 KB
testcase_28 AC 1,593 ms
90,248 KB
testcase_29 AC 1,607 ms
90,288 KB
testcase_30 AC 1,591 ms
89,868 KB
testcase_31 AC 1,596 ms
89,412 KB
testcase_32 AC 1,593 ms
90,136 KB
testcase_33 AC 1,589 ms
88,040 KB
testcase_34 AC 1,640 ms
90,744 KB
testcase_35 AC 1,610 ms
89,264 KB
testcase_36 AC 1,608 ms
89,960 KB
testcase_37 AC 1,648 ms
88,972 KB
testcase_38 AC 1,596 ms
90,160 KB
testcase_39 AC 1,590 ms
89,696 KB
testcase_40 AC 1,614 ms
88,212 KB
testcase_41 AC 488 ms
85,440 KB
testcase_42 AC 116 ms
80,192 KB
testcase_43 AC 1,657 ms
89,912 KB
testcase_44 AC 1,493 ms
89,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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