結果

問題 No.82 市松模様
ユーザー yo-kondoyo-kondo
提出日時 2018-03-25 16:38:30
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 325 ms / 5,000 ms
コード長 859 bytes
コンパイル時間 13,130 ms
コンパイル使用メモリ 434,832 KB
実行使用メモリ 67,036 KB
最終ジャッジ日時 2024-11-20 14:49:36
合計ジャッジ時間 15,616 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
56,784 KB
testcase_01 AC 302 ms
56,784 KB
testcase_02 AC 306 ms
56,860 KB
testcase_03 AC 303 ms
56,760 KB
testcase_04 AC 311 ms
56,872 KB
testcase_05 AC 307 ms
56,860 KB
testcase_06 AC 306 ms
56,688 KB
testcase_07 AC 305 ms
56,868 KB
testcase_08 AC 325 ms
65,000 KB
testcase_09 AC 321 ms
67,036 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package yukicoder.no82

/**
 * エントリポイント
 */
fun main(args: Array<String>) {
    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
}
0