結果

問題 No.1700 floor X
ユーザー Takuya NoguchiTakuya Noguchi
提出日時 2021-12-13 21:01:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,788 ms / 2,000 ms
コード長 109 bytes
コンパイル時間 1,113 ms
コンパイル使用メモリ 87,244 KB
実行使用メモリ 106,660 KB
最終ジャッジ日時 2023-09-30 02:25:04
合計ジャッジ時間 75,349 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 214 ms
88,700 KB
testcase_01 AC 1,782 ms
106,660 KB
testcase_02 AC 1,692 ms
101,404 KB
testcase_03 AC 1,681 ms
101,476 KB
testcase_04 AC 1,684 ms
101,700 KB
testcase_05 AC 1,743 ms
103,712 KB
testcase_06 AC 1,703 ms
101,840 KB
testcase_07 AC 1,760 ms
101,864 KB
testcase_08 AC 1,691 ms
100,472 KB
testcase_09 AC 1,663 ms
103,708 KB
testcase_10 AC 1,685 ms
103,428 KB
testcase_11 AC 1,716 ms
101,912 KB
testcase_12 AC 1,653 ms
102,736 KB
testcase_13 AC 1,665 ms
103,056 KB
testcase_14 AC 1,661 ms
101,208 KB
testcase_15 AC 1,673 ms
102,108 KB
testcase_16 AC 1,674 ms
100,736 KB
testcase_17 AC 1,709 ms
102,192 KB
testcase_18 AC 1,678 ms
102,748 KB
testcase_19 AC 1,668 ms
103,480 KB
testcase_20 AC 1,663 ms
103,400 KB
testcase_21 AC 1,639 ms
101,020 KB
testcase_22 AC 1,656 ms
101,800 KB
testcase_23 AC 1,644 ms
101,616 KB
testcase_24 AC 1,689 ms
104,164 KB
testcase_25 AC 1,650 ms
100,556 KB
testcase_26 AC 1,654 ms
102,268 KB
testcase_27 AC 1,655 ms
103,668 KB
testcase_28 AC 1,648 ms
100,616 KB
testcase_29 AC 1,669 ms
101,052 KB
testcase_30 AC 1,678 ms
102,916 KB
testcase_31 AC 1,652 ms
101,792 KB
testcase_32 AC 1,652 ms
100,436 KB
testcase_33 AC 1,653 ms
102,720 KB
testcase_34 AC 1,699 ms
100,832 KB
testcase_35 AC 1,680 ms
100,436 KB
testcase_36 AC 1,652 ms
103,968 KB
testcase_37 AC 1,741 ms
102,948 KB
testcase_38 AC 1,745 ms
101,480 KB
testcase_39 AC 1,733 ms
102,576 KB
testcase_40 AC 1,743 ms
100,736 KB
testcase_41 AC 611 ms
95,472 KB
testcase_42 AC 230 ms
88,996 KB
testcase_43 AC 1,788 ms
100,072 KB
testcase_44 AC 1,557 ms
105,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal

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