結果
問題 | No.307 最近色塗る問題多くない? |
ユーザー | javy |
提出日時 | 2015-11-27 23:35:51 |
言語 | Kotlin (1.9.23) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,256 bytes |
コンパイル時間 | 15,806 ms |
コンパイル使用メモリ | 440,484 KB |
実行使用メモリ | 84,812 KB |
最終ジャッジ日時 | 2024-11-20 02:10:39 |
合計ジャッジ時間 | 38,216 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 350 ms
51,580 KB |
testcase_01 | AC | 320 ms
51,740 KB |
testcase_02 | AC | 316 ms
51,640 KB |
testcase_03 | AC | 320 ms
51,656 KB |
testcase_04 | AC | 373 ms
52,136 KB |
testcase_05 | AC | 328 ms
51,916 KB |
testcase_06 | AC | 351 ms
52,096 KB |
testcase_07 | AC | 922 ms
58,840 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 586 ms
57,412 KB |
testcase_11 | AC | 694 ms
61,688 KB |
testcase_12 | AC | 328 ms
51,732 KB |
testcase_13 | AC | 597 ms
69,800 KB |
testcase_14 | AC | 517 ms
54,192 KB |
testcase_15 | AC | 536 ms
54,684 KB |
testcase_16 | AC | 495 ms
53,560 KB |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | AC | 411 ms
52,704 KB |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | AC | 1,003 ms
72,660 KB |
testcase_28 | RE | - |
testcase_29 | AC | 558 ms
65,756 KB |
testcase_30 | RE | - |
testcase_31 | AC | 1,076 ms
82,636 KB |
testcase_32 | AC | 1,065 ms
83,948 KB |
testcase_33 | RE | - |
testcase_34 | AC | 1,082 ms
83,012 KB |
testcase_35 | RE | - |
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used fun main(args: Array<String>) { ^
ソースコード
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 readLineDoubleArray(): List<Double> { val str = readLine() as String val arrStr = str.split(" ") val ret = arrStr.map { it.toDouble() } return ret } fun readLineStringArray(): List<String> { val str = readLine() as String val arrStr = str.split(" ") return arrStr } 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() } }