結果

問題 No.1700 floor X
ユーザー O2MTO2MT
提出日時 2021-10-08 22:24:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 98 bytes
コンパイル時間 1,074 ms
コンパイル使用メモリ 86,164 KB
実行使用メモリ 77,320 KB
最終ジャッジ日時 2023-09-30 10:51:39
合計ジャッジ時間 9,120 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
70,860 KB
testcase_01 AC 125 ms
76,996 KB
testcase_02 AC 125 ms
77,112 KB
testcase_03 AC 126 ms
77,112 KB
testcase_04 AC 125 ms
77,008 KB
testcase_05 AC 123 ms
77,040 KB
testcase_06 AC 124 ms
77,172 KB
testcase_07 AC 122 ms
77,144 KB
testcase_08 AC 122 ms
77,000 KB
testcase_09 AC 123 ms
77,004 KB
testcase_10 AC 124 ms
77,180 KB
testcase_11 AC 123 ms
76,980 KB
testcase_12 AC 124 ms
76,860 KB
testcase_13 AC 124 ms
77,148 KB
testcase_14 AC 122 ms
76,724 KB
testcase_15 AC 123 ms
77,140 KB
testcase_16 AC 127 ms
77,180 KB
testcase_17 AC 129 ms
77,184 KB
testcase_18 AC 125 ms
77,316 KB
testcase_19 AC 135 ms
76,952 KB
testcase_20 AC 124 ms
76,976 KB
testcase_21 AC 127 ms
77,036 KB
testcase_22 AC 127 ms
77,156 KB
testcase_23 AC 141 ms
76,724 KB
testcase_24 AC 128 ms
76,940 KB
testcase_25 AC 127 ms
76,856 KB
testcase_26 AC 126 ms
77,320 KB
testcase_27 AC 126 ms
77,000 KB
testcase_28 AC 122 ms
77,036 KB
testcase_29 AC 123 ms
76,944 KB
testcase_30 AC 127 ms
77,036 KB
testcase_31 AC 128 ms
77,104 KB
testcase_32 AC 127 ms
76,948 KB
testcase_33 AC 126 ms
77,156 KB
testcase_34 AC 124 ms
77,052 KB
testcase_35 AC 126 ms
76,992 KB
testcase_36 AC 126 ms
77,000 KB
testcase_37 AC 129 ms
77,116 KB
testcase_38 AC 125 ms
76,728 KB
testcase_39 AC 126 ms
77,180 KB
testcase_40 AC 128 ms
77,180 KB
testcase_41 AC 130 ms
76,652 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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