結果

問題 No.1700 floor X
ユーザー neckrawarmerneckrawarmer
提出日時 2021-10-08 22:02:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 161 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-07-03 10:27:47
合計ジャッジ時間 5,100 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 73 ms
69,888 KB
testcase_02 AC 72 ms
69,888 KB
testcase_03 AC 71 ms
69,888 KB
testcase_04 AC 74 ms
70,144 KB
testcase_05 AC 75 ms
71,424 KB
testcase_06 AC 75 ms
70,016 KB
testcase_07 AC 74 ms
69,632 KB
testcase_08 AC 75 ms
70,144 KB
testcase_09 AC 76 ms
71,808 KB
testcase_10 AC 75 ms
71,680 KB
testcase_11 AC 73 ms
69,760 KB
testcase_12 AC 71 ms
69,888 KB
testcase_13 AC 73 ms
69,932 KB
testcase_14 AC 75 ms
71,680 KB
testcase_15 AC 80 ms
70,272 KB
testcase_16 AC 74 ms
69,376 KB
testcase_17 AC 73 ms
70,016 KB
testcase_18 AC 72 ms
69,504 KB
testcase_19 AC 72 ms
69,888 KB
testcase_20 AC 75 ms
69,760 KB
testcase_21 AC 91 ms
76,008 KB
testcase_22 AC 87 ms
75,904 KB
testcase_23 AC 88 ms
76,160 KB
testcase_24 AC 89 ms
75,904 KB
testcase_25 AC 94 ms
75,904 KB
testcase_26 AC 90 ms
76,020 KB
testcase_27 AC 93 ms
76,288 KB
testcase_28 AC 96 ms
75,904 KB
testcase_29 AC 91 ms
76,160 KB
testcase_30 AC 92 ms
76,012 KB
testcase_31 AC 90 ms
75,904 KB
testcase_32 AC 87 ms
75,904 KB
testcase_33 AC 87 ms
76,416 KB
testcase_34 AC 90 ms
76,260 KB
testcase_35 AC 94 ms
75,964 KB
testcase_36 AC 88 ms
76,216 KB
testcase_37 AC 90 ms
75,904 KB
testcase_38 AC 88 ms
75,956 KB
testcase_39 AC 95 ms
76,416 KB
testcase_40 AC 89 ms
75,904 KB
testcase_41 AC 85 ms
75,980 KB
testcase_42 AC 35 ms
52,224 KB
testcase_43 AC 89 ms
75,828 KB
testcase_44 AC 91 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t=int(input())
for _ in range(t):
  n=int(input())
  ok=0;ng=n+1;
  while abs(ok-ng)>1:
    mid=(ok+ng)//2
    if(mid*mid<=n):ok=mid
    else :ng=mid
  print(ok)
0