結果

問題 No.1700 floor X
ユーザー kohei2019kohei2019
提出日時 2023-06-04 16:50:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 88 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 87,096 KB
実行使用メモリ 78,148 KB
最終ジャッジ日時 2023-08-28 08:17:12
合計ジャッジ時間 8,217 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,768 KB
testcase_01 AC 131 ms
77,900 KB
testcase_02 AC 129 ms
77,952 KB
testcase_03 AC 131 ms
78,076 KB
testcase_04 AC 131 ms
77,844 KB
testcase_05 AC 129 ms
77,688 KB
testcase_06 AC 129 ms
77,928 KB
testcase_07 AC 128 ms
77,844 KB
testcase_08 AC 130 ms
77,928 KB
testcase_09 AC 127 ms
78,076 KB
testcase_10 AC 134 ms
77,684 KB
testcase_11 AC 127 ms
77,932 KB
testcase_12 AC 126 ms
77,888 KB
testcase_13 AC 128 ms
77,884 KB
testcase_14 AC 130 ms
77,888 KB
testcase_15 AC 128 ms
77,944 KB
testcase_16 AC 127 ms
77,880 KB
testcase_17 AC 129 ms
77,772 KB
testcase_18 AC 128 ms
77,668 KB
testcase_19 AC 127 ms
77,776 KB
testcase_20 AC 127 ms
77,668 KB
testcase_21 AC 129 ms
77,912 KB
testcase_22 AC 132 ms
77,856 KB
testcase_23 AC 131 ms
77,720 KB
testcase_24 AC 132 ms
77,880 KB
testcase_25 AC 129 ms
77,824 KB
testcase_26 AC 130 ms
77,844 KB
testcase_27 AC 131 ms
77,684 KB
testcase_28 AC 132 ms
77,872 KB
testcase_29 AC 136 ms
77,832 KB
testcase_30 AC 130 ms
77,844 KB
testcase_31 AC 130 ms
77,984 KB
testcase_32 AC 131 ms
77,964 KB
testcase_33 AC 135 ms
77,632 KB
testcase_34 AC 130 ms
78,020 KB
testcase_35 AC 133 ms
77,796 KB
testcase_36 AC 131 ms
77,616 KB
testcase_37 AC 131 ms
77,836 KB
testcase_38 AC 132 ms
77,968 KB
testcase_39 AC 131 ms
77,796 KB
testcase_40 AC 133 ms
77,832 KB
testcase_41 AC 131 ms
77,644 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for i in range(T):
    N = int(input())
    print(-int(-(N**(1/2)//1)))
0