結果

問題 No.1894 Delete AB
ユーザー 箱星箱星
提出日時 2022-04-08 21:46:41
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 680 ms / 2,000 ms
コード長 1,475 bytes
コンパイル時間 12,691 ms
コンパイル使用メモリ 441,548 KB
実行使用メモリ 97,832 KB
最終ジャッジ日時 2024-11-28 12:27:45
合計ジャッジ時間 23,184 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 14
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:8:13: warning: variable 'n' is never used
        val n = nextInt()
            ^

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val numCases = nextInt()
    case@ for (_i in 0 until numCases) {
        val n = nextInt()
        val s = nextLine()
        val stack = Stack<Char>()
        for (c in s) {
            stack.push(c)
            while (stack.size >= 3) {
                val c1 = stack.pop()
                val c2 = stack.pop()
                val c3 = stack.pop()
                val t = "$c3$c2$c1"
                if (t == "ABB") {
                    stack.push('B')
                } else {
                    stack.push(c3)
                    stack.push(c2)
                    stack.push(c1)
                    break
                }
            }
        }
        println(stack.joinToString(""))
    }
}

fun main() {
    Thread(null, {
        val writer = PrintWriter(System.out, false)
        writer.solve()
        writer.flush()
    }, "solve", abs(1L.shl(26)))
        .apply { setUncaughtExceptionHandler { _, e -> e.printStackTrace(); kotlin.system.exitProcess(1) } }
        .apply { start() }.join()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()
fun nextDouble() = next().toDouble()
// endregion
0