結果

問題 No.1700 floor X
ユーザー O2MTO2MT
提出日時 2021-10-08 22:30:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,603 ms / 2,000 ms
コード長 127 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 93,056 KB
最終ジャッジ日時 2024-07-03 10:33:30
合計ジャッジ時間 66,952 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
80,128 KB
testcase_01 AC 1,541 ms
93,056 KB
testcase_02 AC 1,505 ms
90,296 KB
testcase_03 AC 1,511 ms
90,200 KB
testcase_04 AC 1,538 ms
91,920 KB
testcase_05 AC 1,548 ms
90,104 KB
testcase_06 AC 1,537 ms
90,496 KB
testcase_07 AC 1,557 ms
90,980 KB
testcase_08 AC 1,559 ms
91,776 KB
testcase_09 AC 1,524 ms
90,440 KB
testcase_10 AC 1,513 ms
90,748 KB
testcase_11 AC 1,543 ms
90,932 KB
testcase_12 AC 1,546 ms
89,556 KB
testcase_13 AC 1,492 ms
91,500 KB
testcase_14 AC 1,519 ms
90,304 KB
testcase_15 AC 1,523 ms
90,612 KB
testcase_16 AC 1,538 ms
90,836 KB
testcase_17 AC 1,521 ms
91,008 KB
testcase_18 AC 1,529 ms
90,244 KB
testcase_19 AC 1,517 ms
92,740 KB
testcase_20 AC 1,539 ms
90,796 KB
testcase_21 AC 1,489 ms
90,400 KB
testcase_22 AC 1,493 ms
90,360 KB
testcase_23 AC 1,508 ms
88,980 KB
testcase_24 AC 1,552 ms
89,540 KB
testcase_25 AC 1,535 ms
89,624 KB
testcase_26 AC 1,530 ms
90,112 KB
testcase_27 AC 1,520 ms
91,320 KB
testcase_28 AC 1,486 ms
89,216 KB
testcase_29 AC 1,511 ms
90,164 KB
testcase_30 AC 1,500 ms
89,728 KB
testcase_31 AC 1,510 ms
89,532 KB
testcase_32 AC 1,488 ms
90,056 KB
testcase_33 AC 1,516 ms
89,768 KB
testcase_34 AC 1,513 ms
90,232 KB
testcase_35 AC 1,520 ms
90,276 KB
testcase_36 AC 1,506 ms
90,144 KB
testcase_37 AC 1,505 ms
89,172 KB
testcase_38 AC 1,503 ms
90,500 KB
testcase_39 AC 1,514 ms
90,444 KB
testcase_40 AC 1,542 ms
89,528 KB
testcase_41 AC 461 ms
85,376 KB
testcase_42 AC 117 ms
80,256 KB
testcase_43 AC 1,603 ms
90,232 KB
testcase_44 AC 1,413 ms
90,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal

T = int(input())

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