結果

問題 No.307 最近色塗る問題多くない?
ユーザー javyjavy
提出日時 2015-11-27 23:37:01
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 1,912 bytes
コンパイル時間 14,662 ms
コンパイル使用メモリ 437,852 KB
実行使用メモリ 85,100 KB
最終ジャッジ日時 2024-11-20 03:26:54
合計ジャッジ時間 36,093 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
51,924 KB
testcase_01 AC 316 ms
51,932 KB
testcase_02 AC 315 ms
51,880 KB
testcase_03 AC 318 ms
51,844 KB
testcase_04 AC 366 ms
52,348 KB
testcase_05 AC 333 ms
51,992 KB
testcase_06 AC 350 ms
51,960 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 564 ms
57,268 KB
testcase_11 AC 684 ms
62,016 KB
testcase_12 AC 326 ms
51,832 KB
testcase_13 AC 617 ms
69,820 KB
testcase_14 AC 494 ms
54,204 KB
testcase_15 AC 518 ms
54,832 KB
testcase_16 AC 484 ms
53,612 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 398 ms
52,872 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 972 ms
72,764 KB
testcase_28 RE -
testcase_29 AC 548 ms
65,972 KB
testcase_30 RE -
testcase_31 AC 1,054 ms
83,820 KB
testcase_32 AC 1,051 ms
83,744 KB
testcase_33 RE -
testcase_34 AC 1,069 ms
82,800 KB
testcase_35 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package Yukicoder

/**
 * Created by hichikawa on 2015/11/12.
 */
fun main(args: Array<String>) {
    fun readLineLongArray(): List<Long> {
        val str = readLine() as String
        val arrStr = str.split(" ")
        val ret = arrStr.map { it.toLong() }
        return ret
    }

    fun readLineLong(): Long {
        val str = readLine() as String
        return str.toLong()
    }

    fun readLineInt(): Int {
        val str = readLine() as String
        return str.toInt()
    }

    fun readLineIntArray() : List<Int> {
        val str = readLine() as String
        val arrStr = str.split(" ")
        val ret = arrStr.map { it.toInt() }
        return ret
    }

    fun repaintArray(arrArea : Array<Array<Int>>, x : Int, y : Int, color : Int, H : Int, W : Int) : Array<Array<Int>>{
        if (arrArea[x][y] == color) {
            return arrArea
        }
        arrArea[x][y] = color
        if (x > 0 && arrArea[x-1][y] != color) {
            repaintArray(arrArea, x-1, y, color, H, W)
        }
        if (y > 0 && arrArea[x][y-1] != color) {
            repaintArray(arrArea, x, y-1, color, H, W)
        }
        if (x < H-1 && arrArea[x+1][y] != color) {
            repaintArray(arrArea, x+1, y, color, H, W)
        }
        if (y < W-1 && arrArea[x][y+1] != color) {
            repaintArray(arrArea, x, y+1, color, H, W)
        }
        return arrArea
    }

    val input1 = readLineIntArray()
    val H = input1[0]
    val W = input1[1]
    var arrArea = Array(H , {readLineIntArray().toTypedArray()})
    val repaintNum = readLineInt()
    for (i in 1..repaintNum) {
        val input = readLineIntArray()
        repaintArray(arrArea, input[0]-1, input[1]-1, input[2], H, W)
    }
    for (line in arrArea) {
        for ((i, c) in line.withIndex()) {
            if (i!=0) {
                print(" ")
            }
            print(c)
        }
        println()
    }
}
0