結果

問題 No.852 連続部分文字列
ユーザー 👑 obakyanobakyan
提出日時 2020-05-02 17:25:16
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 320 ms / 3,153 ms
コード長 746 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 18,516 KB
最終ジャッジ日時 2024-06-09 18:26:00
合計ジャッジ時間 4,898 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 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 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 6 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 6 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 6 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 5 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 4 ms
5,376 KB
testcase_26 AC 5 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 4 ms
5,376 KB
testcase_29 AC 6 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 6 ms
5,376 KB
testcase_32 AC 7 ms
5,376 KB
testcase_33 AC 287 ms
16,340 KB
testcase_34 AC 280 ms
16,088 KB
testcase_35 AC 280 ms
16,344 KB
testcase_36 AC 279 ms
16,344 KB
testcase_37 AC 283 ms
16,088 KB
testcase_38 AC 283 ms
16,344 KB
testcase_39 AC 284 ms
16,344 KB
testcase_40 AC 281 ms
16,084 KB
testcase_41 AC 282 ms
16,468 KB
testcase_42 AC 288 ms
18,516 KB
testcase_43 AC 320 ms
15,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local s = io.read()
local n = #s
local t = {}
for i = 1, 26 do
  t[i] = {}
end
for i = 1, n do
  local b = s:sub(i, i):byte() - 96
  table.insert(t[b], i)
end
-- inv sort
for i = 1, 26 do
  local tn = #t[i]
  local htn = math.floor(tn / 2)
  for j = 1, htn do
    t[i][j], t[i][tn + 1 - j] = t[i][tn + 1 - j], t[i][j]
  end
end
local val = 0
for i = 1, 26 do
  if 0 < #t[i] then
    val = val + n + 1 - t[i][#t[i]]
  end
end
local cnt = 0
for i = 1, n do
  cnt = cnt + val
  local b = s:sub(i, i):byte() - 96
  if t[b][#t[b]] == i then
    val = val - (n + 1 - t[b][#t[b]])
    table.remove(t[b])
    if 0 < #t[b] then
      val = val + (n + 1 - t[b][#t[b]])
    end
  end
end
local all = n * (n + 1) / 2
print(string.format("%.10f", cnt / all))
0