結果

問題 No.82 市松模様
ユーザー Pump0129Pump0129
提出日時 2018-03-30 04:05:39
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 361 ms / 5,000 ms
コード長 475 bytes
コンパイル時間 11,690 ms
コンパイル使用メモリ 431,356 KB
実行使用メモリ 57,276 KB
最終ジャッジ日時 2024-11-20 15:11:52
合計ジャッジ時間 15,834 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
56,844 KB
testcase_01 AC 308 ms
56,696 KB
testcase_02 AC 311 ms
56,900 KB
testcase_03 AC 306 ms
56,788 KB
testcase_04 AC 311 ms
56,832 KB
testcase_05 AC 316 ms
56,660 KB
testcase_06 AC 318 ms
56,732 KB
testcase_07 AC 339 ms
57,052 KB
testcase_08 AC 361 ms
57,276 KB
testcase_09 AC 352 ms
57,104 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package net.ipipip0129.kotlin.yukicoder

fun main(args: Array<String>) {
    val data = readLine()!!.split(" ")
    val width = data[0].toInt()
    val height = data[1].toInt()
    val isODD = width % 2 == 0
    var isBlack = data[2] == "B"

    for (j in 0 until height) {
        for (i in 0 until width) {
            print(if (isBlack) "B" else "W")
            isBlack = !isBlack
        }
        if (isODD) isBlack = !isBlack
        println()
    }
}
0