結果

問題 No.179 塗り分け
ユーザー rutilicusrutilicus
提出日時 2020-09-02 21:56:04
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 462 ms / 3,000 ms
コード長 1,220 bytes
コンパイル時間 13,548 ms
コンパイル使用メモリ 443,544 KB
実行使用メモリ 87,868 KB
最終ジャッジ日時 2024-07-23 15:19:44
合計ジャッジ時間 31,977 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 334 ms
60,260 KB
testcase_01 AC 334 ms
60,392 KB
testcase_02 AC 333 ms
60,260 KB
testcase_03 AC 334 ms
60,280 KB
testcase_04 AC 333 ms
60,268 KB
testcase_05 AC 360 ms
66,648 KB
testcase_06 AC 339 ms
62,636 KB
testcase_07 AC 341 ms
60,352 KB
testcase_08 AC 406 ms
87,664 KB
testcase_09 AC 419 ms
87,668 KB
testcase_10 AC 380 ms
87,452 KB
testcase_11 AC 379 ms
87,496 KB
testcase_12 AC 413 ms
87,748 KB
testcase_13 AC 332 ms
60,372 KB
testcase_14 AC 336 ms
60,368 KB
testcase_15 AC 329 ms
60,380 KB
testcase_16 AC 325 ms
60,396 KB
testcase_17 AC 326 ms
60,260 KB
testcase_18 AC 373 ms
87,548 KB
testcase_19 AC 372 ms
87,432 KB
testcase_20 AC 396 ms
87,768 KB
testcase_21 AC 462 ms
87,788 KB
testcase_22 AC 424 ms
87,320 KB
testcase_23 AC 375 ms
87,664 KB
testcase_24 AC 415 ms
87,772 KB
testcase_25 AC 372 ms
87,740 KB
testcase_26 AC 404 ms
87,604 KB
testcase_27 AC 420 ms
87,868 KB
testcase_28 AC 400 ms
87,716 KB
testcase_29 AC 418 ms
87,656 KB
testcase_30 AC 393 ms
87,712 KB
testcase_31 AC 414 ms
87,596 KB
testcase_32 AC 394 ms
87,520 KB
testcase_33 AC 412 ms
87,656 KB
testcase_34 AC 387 ms
87,740 KB
testcase_35 AC 408 ms
87,656 KB
testcase_36 AC 330 ms
60,380 KB
testcase_37 AC 319 ms
60,312 KB
testcase_38 AC 325 ms
60,324 KB
testcase_39 AC 329 ms
60,272 KB
testcase_40 AC 324 ms
60,372 KB
testcase_41 AC 334 ms
60,244 KB
testcase_42 AC 326 ms
60,152 KB
testcase_43 AC 329 ms
62,520 KB
testcase_44 AC 341 ms
68,564 KB
testcase_45 AC 323 ms
60,396 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:45:13: warning: 'appendln(String?): 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(if (ok) "YES" else "NO")
            ^

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

    val (h, w) = readInputLine().split(" ").map { it.toInt() }

    val map = Array(h) { readInputLine().toCharArray() }

    var ok = false

    for (i in -h until h) {
        if (ok) {
            break
        }
        for (j in -w until w) {
            val tmp = Array(h) { map[it].copyOf() }
            var ng = false

            for (k in 0 until h) {
                if (ng) {
                    break
                }
                for (l in 0 until w) {
                    if (tmp[k][l] == '#') {
                        tmp[k][l] = 'r'
                        if (k + i < 0 || k + i >= h || l + j < 0 || l + j >= w || tmp[k + i][l + j] != '#') {
                            ng = true
                            break
                        }
                        tmp[k + i][l + j] = 'b'
                    }
                }
            }

            if (!ng) {
                ok = true
                break
            }
        }
    }

    if (!map.any { it.contains('#') }) {
        ok = false
    }

    builder.appendln(if (ok) "YES" else "NO")

    print(builder.toString())
}

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