結果

問題 No.1700 floor X
ユーザー O2MTO2MT
提出日時 2021-10-08 22:26:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 144 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 87,320 KB
実行使用メモリ 95,372 KB
最終ジャッジ日時 2023-09-30 10:58:45
合計ジャッジ時間 19,282 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 219 ms
88,796 KB
testcase_01 AC 381 ms
92,456 KB
testcase_02 AC 379 ms
92,476 KB
testcase_03 AC 376 ms
92,608 KB
testcase_04 AC 383 ms
92,376 KB
testcase_05 AC 381 ms
92,792 KB
testcase_06 AC 381 ms
92,700 KB
testcase_07 AC 380 ms
92,520 KB
testcase_08 AC 380 ms
92,444 KB
testcase_09 AC 382 ms
92,456 KB
testcase_10 AC 382 ms
92,800 KB
testcase_11 AC 383 ms
92,636 KB
testcase_12 AC 386 ms
92,768 KB
testcase_13 AC 385 ms
92,508 KB
testcase_14 AC 382 ms
92,612 KB
testcase_15 AC 385 ms
92,452 KB
testcase_16 AC 389 ms
92,700 KB
testcase_17 AC 383 ms
92,768 KB
testcase_18 AC 383 ms
92,372 KB
testcase_19 AC 385 ms
92,444 KB
testcase_20 AC 380 ms
92,364 KB
testcase_21 AC 371 ms
93,804 KB
testcase_22 AC 370 ms
94,976 KB
testcase_23 AC 369 ms
95,084 KB
testcase_24 AC 373 ms
95,372 KB
testcase_25 AC 373 ms
95,232 KB
testcase_26 AC 368 ms
93,696 KB
testcase_27 AC 378 ms
95,068 KB
testcase_28 AC 373 ms
95,180 KB
testcase_29 AC 374 ms
93,900 KB
testcase_30 AC 368 ms
94,028 KB
testcase_31 AC 370 ms
93,760 KB
testcase_32 AC 368 ms
94,868 KB
testcase_33 AC 368 ms
94,292 KB
testcase_34 AC 368 ms
94,972 KB
testcase_35 AC 370 ms
94,984 KB
testcase_36 AC 369 ms
93,660 KB
testcase_37 AC 365 ms
93,976 KB
testcase_38 AC 371 ms
93,844 KB
testcase_39 AC 366 ms
94,096 KB
testcase_40 AC 367 ms
94,096 KB
testcase_41 AC 360 ms
93,588 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