結果

問題 No.1110 好きな歌
ユーザー 👑 obakyanobakyan
提出日時 2020-11-16 22:52:38
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 260 ms / 5,000 ms
コード長 646 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 5,120 KB
実行使用メモリ 7,040 KB
最終ジャッジ日時 2024-07-23 01:47:12
合計ジャッジ時間 9,607 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 136 ms
5,376 KB
testcase_25 AC 169 ms
7,040 KB
testcase_26 AC 91 ms
5,376 KB
testcase_27 AC 167 ms
6,944 KB
testcase_28 AC 90 ms
5,376 KB
testcase_29 AC 210 ms
7,040 KB
testcase_30 AC 81 ms
5,376 KB
testcase_31 AC 55 ms
5,376 KB
testcase_32 AC 227 ms
7,040 KB
testcase_33 AC 87 ms
5,376 KB
testcase_34 AC 134 ms
5,376 KB
testcase_35 AC 197 ms
7,040 KB
testcase_36 AC 20 ms
5,376 KB
testcase_37 AC 66 ms
5,376 KB
testcase_38 AC 209 ms
7,040 KB
testcase_39 AC 150 ms
5,376 KB
testcase_40 AC 153 ms
6,912 KB
testcase_41 AC 14 ms
5,376 KB
testcase_42 AC 187 ms
7,040 KB
testcase_43 AC 202 ms
6,940 KB
testcase_44 AC 206 ms
6,912 KB
testcase_45 AC 240 ms
7,040 KB
testcase_46 AC 228 ms
7,040 KB
testcase_47 AC 260 ms
6,944 KB
testcase_48 AC 237 ms
6,912 KB
testcase_49 AC 184 ms
6,912 KB
testcase_50 AC 232 ms
7,040 KB
testcase_51 AC 216 ms
6,944 KB
testcase_52 AC 235 ms
7,040 KB
testcase_53 AC 258 ms
7,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local mfl = math.floor

local function comp(a, b)
  return a < b
end

local function lower_bound(ary, x)
  local num = #ary
  if num == 0 then return 1 end
  if not comp(ary[1], x) then return 1 end
  if comp(ary[num], x) then return num + 1 end
  local min, max = 1, num
  while 1 < max - min do
    local mid = mfl((min + max) / 2)
    if comp(ary[mid], x) then
      min = mid
    else
      max = mid
    end
  end
  return max
end

local n, d = io.read("*n", "*n")
local t = {}
local a = {}
for i = 1, n do
  t[i] = io.read("*n")
  a[i] =  t[i]
end
table.sort(t)
for i = 1, n do
  local lb = lower_bound(t, a[i] - d + 1)
  print(lb - 1)
end
0