結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー rutilicusrutilicus
提出日時 2020-10-16 01:26:22
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 333 ms / 1,000 ms
コード長 1,642 bytes
コンパイル時間 15,469 ms
コンパイル使用メモリ 447,000 KB
実行使用メモリ 51,852 KB
最終ジャッジ日時 2024-07-20 20:15:09
合計ジャッジ時間 34,798 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 327 ms
51,596 KB
testcase_01 AC 326 ms
51,720 KB
testcase_02 AC 329 ms
51,552 KB
testcase_03 AC 322 ms
51,704 KB
testcase_04 AC 325 ms
51,568 KB
testcase_05 AC 328 ms
51,644 KB
testcase_06 AC 327 ms
51,664 KB
testcase_07 AC 322 ms
51,572 KB
testcase_08 AC 326 ms
51,544 KB
testcase_09 AC 322 ms
51,628 KB
testcase_10 AC 325 ms
51,676 KB
testcase_11 AC 324 ms
51,840 KB
testcase_12 AC 322 ms
51,668 KB
testcase_13 AC 322 ms
51,640 KB
testcase_14 AC 324 ms
51,740 KB
testcase_15 AC 320 ms
51,552 KB
testcase_16 AC 322 ms
51,508 KB
testcase_17 AC 322 ms
51,688 KB
testcase_18 AC 321 ms
51,852 KB
testcase_19 AC 325 ms
51,544 KB
testcase_20 AC 321 ms
51,548 KB
testcase_21 AC 322 ms
51,556 KB
testcase_22 AC 328 ms
51,580 KB
testcase_23 AC 326 ms
51,640 KB
testcase_24 AC 321 ms
51,540 KB
testcase_25 AC 325 ms
51,636 KB
testcase_26 AC 325 ms
51,672 KB
testcase_27 AC 324 ms
51,580 KB
testcase_28 AC 324 ms
51,636 KB
testcase_29 AC 324 ms
51,576 KB
testcase_30 AC 324 ms
51,552 KB
testcase_31 AC 327 ms
51,572 KB
testcase_32 AC 325 ms
51,636 KB
testcase_33 AC 325 ms
51,548 KB
testcase_34 AC 330 ms
51,700 KB
testcase_35 AC 328 ms
51,672 KB
testcase_36 AC 323 ms
51,632 KB
testcase_37 AC 333 ms
51,688 KB
testcase_38 AC 333 ms
51,576 KB
testcase_39 AC 333 ms
51,636 KB
testcase_40 AC 326 ms
51,508 KB
testcase_41 AC 321 ms
51,476 KB
testcase_42 AC 320 ms
51,472 KB
testcase_43 AC 327 ms
51,784 KB
testcase_44 AC 323 ms
51,600 KB
testcase_45 AC 323 ms
51,764 KB
testcase_46 AC 322 ms
51,748 KB
testcase_47 AC 324 ms
51,596 KB
testcase_48 AC 323 ms
51,696 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:42: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(max(d, 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
        }

        ans = max(ans, when(arr[i - 1].second - d) {
            in Int.MIN_VALUE..0 -> p.second + arr[i - 1].second + arr[i - 2].second
            else -> p.second + d } )

        ans = max(ans, when(arr[i + 1].second - d) {
            in Int.MIN_VALUE..0 -> p.second + arr[i + 1].second + arr[i + 2].second
            else -> p.second + d } )
    }

    builder.appendln(max(d, 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