結果

問題 No.852 連続部分文字列
ユーザー 👑 obakyanobakyan
提出日時 2020-05-02 17:22:21
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 3,080 ms / 3,153 ms
コード長 638 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 7,076 KB
実行使用メモリ 18,388 KB
最終ジャッジ日時 2024-06-09 18:19:21
合計ジャッジ時間 30,848 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 14 ms
6,944 KB
testcase_14 AC 7 ms
6,944 KB
testcase_15 AC 33 ms
6,940 KB
testcase_16 AC 16 ms
6,944 KB
testcase_17 AC 22 ms
6,940 KB
testcase_18 AC 35 ms
6,944 KB
testcase_19 AC 3 ms
6,944 KB
testcase_20 AC 11 ms
6,944 KB
testcase_21 AC 36 ms
6,944 KB
testcase_22 AC 8 ms
6,944 KB
testcase_23 AC 19 ms
6,944 KB
testcase_24 AC 9 ms
6,940 KB
testcase_25 AC 17 ms
6,944 KB
testcase_26 AC 34 ms
6,940 KB
testcase_27 AC 17 ms
6,944 KB
testcase_28 AC 21 ms
6,940 KB
testcase_29 AC 33 ms
6,940 KB
testcase_30 AC 5 ms
6,940 KB
testcase_31 AC 36 ms
6,944 KB
testcase_32 AC 37 ms
6,940 KB
testcase_33 AC 2,592 ms
16,208 KB
testcase_34 AC 2,532 ms
16,340 KB
testcase_35 AC 2,505 ms
16,468 KB
testcase_36 AC 2,550 ms
16,212 KB
testcase_37 AC 2,556 ms
16,336 KB
testcase_38 AC 2,535 ms
16,080 KB
testcase_39 AC 2,629 ms
16,592 KB
testcase_40 AC 2,551 ms
16,464 KB
testcase_41 AC 2,504 ms
16,080 KB
testcase_42 AC 3,080 ms
18,388 KB
testcase_43 AC 1,911 ms
15,188 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 cnt = 0
for i = 1, n do
  for j = 1, 26 do
    if 0 < #t[j] then
      local pos = t[j][#t[j]]
      cnt = cnt + n + 1 - pos
    end
  end
  local b = s:sub(i, i):byte() - 96
  if t[b][#t[b]] == i then
    table.remove(t[b])
  end
end
local all = n * (n + 1) / 2
print(string.format("%.10f", cnt / all))
0