結果

問題 No.1894 Delete AB
ユーザー 👑 obakyanobakyan
提出日時 2022-05-02 15:50:25
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 508 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-01 19:37:39
合計ジャッジ時間 1,197 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 33 ms
5,376 KB
testcase_02 AC 31 ms
5,376 KB
testcase_03 AC 23 ms
5,376 KB
testcase_04 AC 22 ms
5,376 KB
testcase_05 AC 24 ms
5,376 KB
testcase_06 AC 23 ms
5,376 KB
testcase_07 AC 23 ms
5,376 KB
testcase_08 AC 28 ms
5,376 KB
testcase_09 AC 14 ms
5,376 KB
testcase_10 AC 17 ms
5,376 KB
testcase_11 AC 19 ms
5,376 KB
testcase_12 AC 19 ms
5,376 KB
testcase_13 AC 51 ms
5,376 KB
testcase_14 AC 47 ms
5,376 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