結果

問題 No.1894 Delete AB
ユーザー 👑 obakyanobakyan
提出日時 2022-05-02 15:50:25
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 508 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 5,332 KB
実行使用メモリ 4,856 KB
最終ジャッジ日時 2023-09-14 12:11:25
合計ジャッジ時間 1,529 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 36 ms
4,376 KB
testcase_02 AC 34 ms
4,380 KB
testcase_03 AC 24 ms
4,376 KB
testcase_04 AC 26 ms
4,376 KB
testcase_05 AC 26 ms
4,376 KB
testcase_06 AC 26 ms
4,380 KB
testcase_07 AC 27 ms
4,376 KB
testcase_08 AC 35 ms
4,380 KB
testcase_09 AC 18 ms
4,380 KB
testcase_10 AC 21 ms
4,380 KB
testcase_11 AC 21 ms
4,380 KB
testcase_12 AC 26 ms
4,380 KB
testcase_13 AC 74 ms
4,376 KB
testcase_14 AC 73 ms
4,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local q = io.read("*n", "*l")
for iq = 1, q do
  local n = io.read("*n", "*l")
  local s = io.read()
  local t = {}
  for i = 1, n do
    local b = s:byte(i) - 64
    table.insert(t, b)
    while true do
      if 2 < #t and t[#t - 1] == 2 and t[#t - 2] == 1 and t[#t] == 2 then
        table.remove(t)
        table.remove(t)
        table.remove(t)
        table.insert(t, 2)
      else
        break
      end
    end
  end
  for i = 1, #t do t[i] = string.char(t[i] + 64) end
  print(table.concat(t))
end
0