結果

問題 No.179 塗り分け
ユーザー rutilicusrutilicus
提出日時 2020-09-02 21:50:27
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,149 bytes
コンパイル時間 15,090 ms
コンパイル使用メモリ 442,176 KB
実行使用メモリ 71,268 KB
最終ジャッジ日時 2024-11-21 22:00:14
合計ジャッジ時間 32,859 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 330 ms
51,776 KB
testcase_01 AC 332 ms
53,124 KB
testcase_02 AC 335 ms
51,768 KB
testcase_03 AC 336 ms
51,876 KB
testcase_04 AC 326 ms
51,704 KB
testcase_05 AC 339 ms
53,204 KB
testcase_06 AC 326 ms
51,744 KB
testcase_07 WA -
testcase_08 AC 376 ms
67,400 KB
testcase_09 WA -
testcase_10 AC 329 ms
51,724 KB
testcase_11 AC 325 ms
51,748 KB
testcase_12 AC 368 ms
64,668 KB
testcase_13 AC 320 ms
51,772 KB
testcase_14 AC 319 ms
51,832 KB
testcase_15 AC 311 ms
51,608 KB
testcase_16 AC 310 ms
51,708 KB
testcase_17 WA -
testcase_18 AC 323 ms
52,184 KB
testcase_19 AC 318 ms
52,116 KB
testcase_20 AC 355 ms
66,424 KB
testcase_21 AC 369 ms
67,360 KB
testcase_22 AC 391 ms
67,320 KB
testcase_23 AC 322 ms
51,588 KB
testcase_24 AC 368 ms
67,012 KB
testcase_25 AC 331 ms
51,732 KB
testcase_26 WA -
testcase_27 AC 370 ms
67,192 KB
testcase_28 WA -
testcase_29 AC 372 ms
67,456 KB
testcase_30 WA -
testcase_31 AC 374 ms
67,496 KB
testcase_32 AC 345 ms
55,768 KB
testcase_33 AC 371 ms
67,324 KB
testcase_34 WA -
testcase_35 AC 365 ms
67,236 KB
testcase_36 AC 317 ms
51,628 KB
testcase_37 AC 311 ms
51,784 KB
testcase_38 AC 316 ms
51,912 KB
testcase_39 AC 330 ms
51,632 KB
testcase_40 AC 320 ms
51,624 KB
testcase_41 AC 318 ms
51,796 KB
testcase_42 AC 321 ms
53,176 KB
testcase_43 AC 324 ms
52,140 KB
testcase_44 AC 324 ms
53,660 KB
testcase_45 AC 324 ms
51,900 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:43: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 #

import kotlin.math.max

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

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

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

    print(builder.toString())
}

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