結果

問題 No.1894 Delete AB
ユーザー 👑 箱星箱星
提出日時 2022-04-08 21:46:41
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 647 ms / 2,000 ms
コード長 1,475 bytes
コンパイル時間 15,018 ms
コンパイル使用メモリ 445,872 KB
実行使用メモリ 89,284 KB
最終ジャッジ日時 2024-05-06 07:20:37
合計ジャッジ時間 21,889 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 280 ms
52,052 KB
testcase_01 AC 596 ms
85,924 KB
testcase_02 AC 538 ms
85,944 KB
testcase_03 AC 588 ms
83,904 KB
testcase_04 AC 626 ms
84,744 KB
testcase_05 AC 613 ms
84,660 KB
testcase_06 AC 619 ms
86,428 KB
testcase_07 AC 591 ms
86,048 KB
testcase_08 AC 635 ms
88,560 KB
testcase_09 AC 577 ms
87,348 KB
testcase_10 AC 614 ms
87,104 KB
testcase_11 AC 591 ms
87,676 KB
testcase_12 AC 547 ms
86,276 KB
testcase_13 AC 647 ms
89,284 KB
testcase_14 AC 614 ms
87,432 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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