結果

問題 No.1700 floor X
ユーザー harurunharurun
提出日時 2021-09-11 00:05:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 85 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 87,236 KB
実行使用メモリ 78,752 KB
最終ジャッジ日時 2023-09-30 09:29:17
合計ジャッジ時間 7,935 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
71,172 KB
testcase_01 AC 122 ms
78,596 KB
testcase_02 AC 126 ms
78,228 KB
testcase_03 AC 123 ms
78,228 KB
testcase_04 AC 128 ms
78,344 KB
testcase_05 AC 123 ms
78,500 KB
testcase_06 AC 125 ms
78,476 KB
testcase_07 AC 122 ms
78,588 KB
testcase_08 AC 124 ms
78,696 KB
testcase_09 AC 121 ms
78,440 KB
testcase_10 AC 122 ms
78,612 KB
testcase_11 AC 123 ms
78,560 KB
testcase_12 AC 128 ms
78,204 KB
testcase_13 AC 124 ms
78,504 KB
testcase_14 AC 124 ms
78,296 KB
testcase_15 AC 126 ms
78,752 KB
testcase_16 AC 120 ms
78,428 KB
testcase_17 AC 119 ms
78,248 KB
testcase_18 AC 126 ms
78,536 KB
testcase_19 AC 121 ms
78,508 KB
testcase_20 AC 125 ms
78,484 KB
testcase_21 AC 126 ms
78,516 KB
testcase_22 AC 124 ms
78,528 KB
testcase_23 AC 121 ms
78,416 KB
testcase_24 AC 128 ms
78,496 KB
testcase_25 AC 126 ms
78,476 KB
testcase_26 AC 128 ms
78,384 KB
testcase_27 AC 131 ms
78,200 KB
testcase_28 AC 130 ms
78,212 KB
testcase_29 AC 123 ms
78,368 KB
testcase_30 AC 126 ms
78,404 KB
testcase_31 AC 131 ms
78,600 KB
testcase_32 AC 127 ms
78,324 KB
testcase_33 AC 132 ms
78,444 KB
testcase_34 AC 122 ms
78,424 KB
testcase_35 AC 124 ms
78,572 KB
testcase_36 AC 125 ms
78,528 KB
testcase_37 AC 128 ms
78,232 KB
testcase_38 AC 129 ms
78,380 KB
testcase_39 AC 124 ms
78,456 KB
testcase_40 AC 125 ms
78,472 KB
testcase_41 AC 134 ms
78,440 KB
testcase_42 AC 64 ms
71,428 KB
testcase_43 AC 125 ms
78,396 KB
testcase_44 AC 129 ms
78,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
T=int(input())
for i in range(T):
  N=int(input())
  print(math.isqrt(N))
0