結果

問題 No.1700 floor X
ユーザー O2MTO2MT
提出日時 2021-10-08 22:30:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,828 ms / 2,000 ms
コード長 127 bytes
コンパイル時間 1,474 ms
コンパイル使用メモリ 86,976 KB
実行使用メモリ 106,640 KB
最終ジャッジ日時 2023-09-16 09:17:16
合計ジャッジ時間 77,708 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 211 ms
89,016 KB
testcase_01 AC 1,821 ms
106,364 KB
testcase_02 AC 1,828 ms
101,956 KB
testcase_03 AC 1,722 ms
101,792 KB
testcase_04 AC 1,690 ms
103,476 KB
testcase_05 AC 1,748 ms
102,748 KB
testcase_06 AC 1,731 ms
101,676 KB
testcase_07 AC 1,714 ms
102,216 KB
testcase_08 AC 1,746 ms
101,200 KB
testcase_09 AC 1,720 ms
102,556 KB
testcase_10 AC 1,824 ms
103,372 KB
testcase_11 AC 1,763 ms
101,896 KB
testcase_12 AC 1,696 ms
102,508 KB
testcase_13 AC 1,705 ms
102,884 KB
testcase_14 AC 1,715 ms
101,476 KB
testcase_15 AC 1,724 ms
101,760 KB
testcase_16 AC 1,703 ms
99,888 KB
testcase_17 AC 1,715 ms
102,212 KB
testcase_18 AC 1,724 ms
102,144 KB
testcase_19 AC 1,712 ms
103,556 KB
testcase_20 AC 1,718 ms
103,032 KB
testcase_21 AC 1,689 ms
102,536 KB
testcase_22 AC 1,707 ms
102,352 KB
testcase_23 AC 1,673 ms
103,216 KB
testcase_24 AC 1,696 ms
104,808 KB
testcase_25 AC 1,807 ms
100,268 KB
testcase_26 AC 1,725 ms
101,772 KB
testcase_27 AC 1,719 ms
105,108 KB
testcase_28 AC 1,694 ms
102,408 KB
testcase_29 AC 1,720 ms
102,460 KB
testcase_30 AC 1,730 ms
103,904 KB
testcase_31 AC 1,712 ms
101,672 KB
testcase_32 AC 1,676 ms
100,120 KB
testcase_33 AC 1,690 ms
103,852 KB
testcase_34 AC 1,686 ms
100,720 KB
testcase_35 AC 1,716 ms
100,372 KB
testcase_36 AC 1,690 ms
103,520 KB
testcase_37 AC 1,688 ms
105,380 KB
testcase_38 AC 1,689 ms
100,564 KB
testcase_39 AC 1,688 ms
101,380 KB
testcase_40 AC 1,682 ms
100,272 KB
testcase_41 AC 588 ms
95,628 KB
testcase_42 AC 216 ms
88,892 KB
testcase_43 AC 1,738 ms
99,456 KB
testcase_44 AC 1,647 ms
106,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal

T = int(input())

for _ in range(T):
  N = str(input())
  print(int((Decimal(N)**Decimal('0.5'))))
0