結果

問題 No.1700 floor X
ユーザー O2MTO2MT
提出日時 2021-10-08 22:26:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 144 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 83,928 KB
最終ジャッジ日時 2024-07-23 05:03:55
合計ジャッジ時間 13,416 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
80,256 KB
testcase_01 AC 271 ms
83,584 KB
testcase_02 AC 280 ms
83,712 KB
testcase_03 AC 276 ms
83,780 KB
testcase_04 AC 271 ms
83,608 KB
testcase_05 AC 275 ms
83,584 KB
testcase_06 AC 267 ms
83,780 KB
testcase_07 AC 269 ms
83,716 KB
testcase_08 AC 271 ms
83,660 KB
testcase_09 AC 276 ms
83,712 KB
testcase_10 AC 272 ms
83,712 KB
testcase_11 AC 269 ms
83,584 KB
testcase_12 AC 276 ms
83,584 KB
testcase_13 AC 271 ms
83,456 KB
testcase_14 AC 270 ms
83,928 KB
testcase_15 AC 266 ms
83,712 KB
testcase_16 AC 271 ms
83,456 KB
testcase_17 AC 275 ms
83,604 KB
testcase_18 AC 274 ms
83,584 KB
testcase_19 AC 289 ms
83,596 KB
testcase_20 AC 278 ms
83,596 KB
testcase_21 AC 251 ms
82,944 KB
testcase_22 AC 258 ms
83,200 KB
testcase_23 AC 256 ms
82,940 KB
testcase_24 AC 258 ms
82,848 KB
testcase_25 AC 255 ms
82,944 KB
testcase_26 AC 260 ms
83,120 KB
testcase_27 AC 256 ms
83,032 KB
testcase_28 AC 258 ms
83,084 KB
testcase_29 AC 255 ms
82,804 KB
testcase_30 AC 259 ms
83,120 KB
testcase_31 AC 258 ms
83,000 KB
testcase_32 AC 258 ms
83,200 KB
testcase_33 AC 258 ms
83,224 KB
testcase_34 AC 254 ms
83,272 KB
testcase_35 AC 258 ms
83,264 KB
testcase_36 AC 254 ms
82,996 KB
testcase_37 AC 258 ms
83,148 KB
testcase_38 AC 258 ms
82,816 KB
testcase_39 AC 266 ms
82,816 KB
testcase_40 AC 255 ms
82,976 KB
testcase_41 AC 250 ms
83,252 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt
from decimal import Decimal
T = int(input())
for _ in range(T):
  N = int(input())
  print(int(Decimal(sqrt(Decimal(N)))))
0