結果

問題 No.1894 Delete AB
ユーザー simansiman
提出日時 2022-04-09 00:32:15
言語 Ruby
(3.4.1)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 29,440 KB
最終ジャッジ日時 2024-11-28 16:06:30
合計ジャッジ時間 3,789 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,160 KB
testcase_01 AC 236 ms
12,800 KB
testcase_02 AC 229 ms
12,672 KB
testcase_03 AC 167 ms
12,416 KB
testcase_04 AC 181 ms
12,416 KB
testcase_05 AC 180 ms
12,416 KB
testcase_06 AC 186 ms
12,416 KB
testcase_07 AC 187 ms
12,416 KB
testcase_08 AC 201 ms
12,288 KB
testcase_09 AC 161 ms
12,672 KB
testcase_10 AC 182 ms
12,544 KB
testcase_11 AC 185 ms
12,800 KB
testcase_12 AC 200 ms
12,544 KB
testcase_13 AC 249 ms
20,352 KB
testcase_14 AC 287 ms
29,440 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:4: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

T = gets.to_i

T.times do
  n = gets.to_i
  s = gets.chomp

  stack = []

  s.each_char do |c|
    stack << c

    while stack.size >= 3 && stack[-3] == 'A' && stack[-2] == 'B' && stack[-1] == 'B'
      stack.pop(3)
      stack << 'B'
    end
  end

  puts stack.join
end
0