package yukicoder.no82 /** * エントリポイント */ fun main(args: Array) { val in1 = readLine() print(checkeredPattern(in1)) } /** * 幅、高さ、色をもとに市松模様を返します。最後に改行が入ります。 * @param widthHeightColor 幅、高さ、色 */ fun checkeredPattern(widthHeightColor: String?): String { if (widthHeightColor == null) { return "" } var pattern = "" val sp = widthHeightColor.split(" ") // true="B",false="W" var color = sp[2] == "B" for (h in 1..sp[1].toInt()) { for (w in 1..sp[0].toInt()) { pattern += if (color) "B" else "W" color = !color } // 偶数の場合は反転 if (sp[0].toInt() % 2 == 0) { color = !color } pattern += "\n" } return pattern }