結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー rutilicusrutilicus
提出日時 2020-10-16 01:18:33
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,756 bytes
コンパイル時間 16,354 ms
コンパイル使用メモリ 444,760 KB
実行使用メモリ 51,836 KB
最終ジャッジ日時 2024-07-20 20:13:27
合計ジャッジ時間 33,417 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 316 ms
51,576 KB
testcase_02 AC 311 ms
51,552 KB
testcase_03 AC 319 ms
51,624 KB
testcase_04 AC 316 ms
51,500 KB
testcase_05 AC 306 ms
51,592 KB
testcase_06 AC 313 ms
51,772 KB
testcase_07 AC 319 ms
51,536 KB
testcase_08 AC 305 ms
51,548 KB
testcase_09 AC 304 ms
51,632 KB
testcase_10 AC 305 ms
51,680 KB
testcase_11 AC 320 ms
51,660 KB
testcase_12 AC 317 ms
51,556 KB
testcase_13 AC 312 ms
51,572 KB
testcase_14 AC 322 ms
51,528 KB
testcase_15 AC 314 ms
51,632 KB
testcase_16 AC 316 ms
51,640 KB
testcase_17 AC 306 ms
51,692 KB
testcase_18 AC 306 ms
51,540 KB
testcase_19 AC 306 ms
51,440 KB
testcase_20 AC 311 ms
51,700 KB
testcase_21 AC 313 ms
51,652 KB
testcase_22 AC 311 ms
51,560 KB
testcase_23 AC 312 ms
51,440 KB
testcase_24 AC 311 ms
51,556 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 321 ms
51,568 KB
testcase_29 AC 320 ms
51,616 KB
testcase_30 AC 306 ms
51,624 KB
testcase_31 WA -
testcase_32 AC 315 ms
51,556 KB
testcase_33 AC 307 ms
51,708 KB
testcase_34 AC 311 ms
51,632 KB
testcase_35 AC 316 ms
51,792 KB
testcase_36 AC 320 ms
51,616 KB
testcase_37 AC 311 ms
51,668 KB
testcase_38 AC 309 ms
51,688 KB
testcase_39 AC 307 ms
51,632 KB
testcase_40 AC 316 ms
51,504 KB
testcase_41 WA -
testcase_42 AC 309 ms
51,576 KB
testcase_43 AC 309 ms
51,744 KB
testcase_44 AC 308 ms
51,712 KB
testcase_45 AC 307 ms
51,532 KB
testcase_46 AC 315 ms
51,796 KB
testcase_47 AC 312 ms
51,736 KB
testcase_48 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:50:13: warning: 'appendln(Int): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator.
    builder.appendln(ans)
            ^

ソースコード

diff #

import kotlin.math.max

fun main() {
    val builder = StringBuilder()

    val d = readInputLine().toInt()

    val c = readInputLine() + readInputLine()

    val runLength = runLength(c).toMutableList()

    if (runLength[0].first == 'x') {
        runLength[0] = runLength[0].copy(second = 15)
    } else {
        runLength.add(0, Pair('x', 15))
    }

    if (runLength[runLength.lastIndex].first == 'x') {
        runLength[runLength.lastIndex] = runLength[runLength.lastIndex].copy(second = 15)
    } else {
        runLength.add(Pair('x', 15))
    }

    var ans = 0

    val arr = runLength.toTypedArray()

    for ((i, p) in arr.withIndex()) {
        if (p.first != 'o') {
            continue
        }

        if (arr[i - 1].second >= d) {
            if (arr[i - 1].second == d) {
                ans = max(ans, p.second + d + arr[i - 2].second)
            } else {
                ans = max(ans, p.second + d)
            }
        }

        if (arr[i + 1].second >= d) {
            if (arr[i + 1].second == d) {
                ans = max(ans, p.second + d + arr[i + 2].second)
            } else {
                ans = max(ans, p.second + d)
            }
        }
    }

    builder.appendln(ans)

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}

fun runLength(s: String): List<Pair<Char, Int>> {
    val ret = mutableListOf<Pair<Char, Int>>()

    if (s.isNotEmpty()) {
        var prev = s[0]
        var cnt = 0

        for (c in s) {
            if (c == prev) {
                cnt++
            } else {
                ret.add(Pair(prev, cnt))
                prev = c
                cnt = 1
            }
        }

        ret.add(Pair(prev, cnt))
    }

    return ret.toList()
}
0