結果

問題 No.1894 Delete AB
ユーザー 👑 箱
提出日時 2022-04-08 21:46:41
言語 Kotlin
(1.9.10)
結果
AC  
実行時間 609 ms / 2,000 ms
コード長 1,475 bytes
コンパイル時間 15,052 ms
コンパイル使用メモリ 422,580 KB
実行使用メモリ 64,640 KB
最終ジャッジ日時 2023-08-19 00:24:53
合計ジャッジ時間 24,662 ms
ジャッジサーバーID
(参考情報)
judge15 / judge9
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 295 ms
53,172 KB
testcase_01 AC 606 ms
62,688 KB
testcase_02 AC 564 ms
62,084 KB
testcase_03 AC 560 ms
57,776 KB
testcase_04 AC 575 ms
60,580 KB
testcase_05 AC 583 ms
61,944 KB
testcase_06 AC 588 ms
61,836 KB
testcase_07 AC 585 ms
62,424 KB
testcase_08 AC 601 ms
64,640 KB
testcase_09 AC 556 ms
62,788 KB
testcase_10 AC 609 ms
61,224 KB
testcase_11 AC 545 ms
61,516 KB
testcase_12 AC 548 ms
63,232 KB
testcase_13 AC 597 ms
60,528 KB
testcase_14 AC 597 ms
62,968 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