結果

問題 No.1702 count good string
ユーザー 👑 obakyanobakyan
提出日時 2022-03-23 09:21:03
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 698 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 6,812 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-19 14:30:22
合計ジャッジ時間 5,293 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 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 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 181 ms
5,376 KB
testcase_14 AC 181 ms
5,376 KB
testcase_15 AC 169 ms
5,376 KB
testcase_16 AC 165 ms
5,376 KB
testcase_17 AC 164 ms
5,376 KB
testcase_18 AC 178 ms
5,376 KB
testcase_19 AC 174 ms
5,376 KB
testcase_20 AC 173 ms
5,376 KB
testcase_21 AC 169 ms
5,376 KB
testcase_22 AC 177 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 4 ms
5,376 KB
testcase_28 AC 3 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 5 ms
5,376 KB
testcase_32 AC 5 ms
5,376 KB
testcase_33 AC 150 ms
5,376 KB
testcase_34 AC 152 ms
5,376 KB
testcase_35 AC 150 ms
5,376 KB
testcase_36 AC 156 ms
5,376 KB
testcase_37 AC 153 ms
5,376 KB
testcase_38 AC 160 ms
5,376 KB
testcase_39 AC 153 ms
5,376 KB
testcase_40 AC 144 ms
5,376 KB
testcase_41 AC 144 ms
5,376 KB
testcase_42 AC 149 ms
5,376 KB
testcase_43 AC 187 ms
5,376 KB
testcase_44 AC 166 ms
5,376 KB
testcase_45 AC 1 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
testcase_48 AC 1 ms
5,376 KB
testcase_49 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local mod = 1000000007
local function badd(x, y) return (x + y) % mod end
local tgtall = {
  "yukicoder",
  "?ukicoder",
  "y?kicoder",
  "yu?icoder",
  "yuk?coder",
  "yuki?oder",
  "yukic?der",
  "yukico?er",
  "yukicod?r",
  "yukicode?"
}
local ret = 0
local function solve(n, s, tgt)
  local t = {}
  for i = 1, 9 do
    t[i] = 0
  end
  for i = 1, n do
    for j = 1, 9 do
      if s:sub(i, i) == tgt:sub(j, j) then
        if j == 1 then
          t[j] = t[j] + 1
        else
          t[j] = badd(t[j], t[j - 1])
        end
      end
    end
  end
  ret = badd(ret, t[9])
end

local n = io.read("*n", "*l")
local s = io.read()
for i = 1, #tgtall do
  solve(n, s, tgtall[i])
end
print(ret)
0