結果

問題 No.1225 I hate I hate Matrix Construction
ユーザー rutilicusrutilicus
提出日時 2020-09-12 11:57:39
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 566 bytes
コンパイル時間 10,775 ms
コンパイル使用メモリ 432,912 KB
実行使用メモリ 51,212 KB
最終ジャッジ日時 2024-06-10 05:34:44
合計ジャッジ時間 22,303 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 269 ms
50,812 KB
testcase_01 AC 274 ms
50,876 KB
testcase_02 AC 254 ms
50,932 KB
testcase_03 AC 257 ms
51,172 KB
testcase_04 AC 269 ms
51,112 KB
testcase_05 AC 296 ms
51,172 KB
testcase_06 AC 261 ms
51,064 KB
testcase_07 AC 261 ms
51,064 KB
testcase_08 AC 263 ms
50,952 KB
testcase_09 AC 285 ms
50,968 KB
testcase_10 AC 266 ms
51,128 KB
testcase_11 AC 273 ms
51,100 KB
testcase_12 AC 270 ms
50,952 KB
testcase_13 AC 265 ms
50,920 KB
testcase_14 AC 283 ms
50,928 KB
testcase_15 AC 260 ms
51,156 KB
testcase_16 AC 262 ms
51,112 KB
testcase_17 AC 268 ms
51,024 KB
testcase_18 AC 292 ms
50,976 KB
testcase_19 AC 278 ms
51,076 KB
testcase_20 AC 268 ms
51,072 KB
testcase_21 AC 263 ms
51,020 KB
testcase_22 AC 288 ms
51,188 KB
testcase_23 AC 261 ms
51,212 KB
testcase_24 AC 260 ms
51,120 KB
testcase_25 AC 267 ms
50,968 KB
testcase_26 AC 257 ms
51,188 KB
testcase_27 AC 292 ms
51,020 KB
testcase_28 AC 264 ms
50,964 KB
testcase_29 AC 259 ms
51,076 KB
testcase_30 AC 262 ms
50,944 KB
testcase_31 AC 289 ms
51,180 KB
testcase_32 AC 263 ms
51,116 KB
testcase_33 AC 258 ms
51,008 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:29:13: warning: 'appendln(Int): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator.
    builder.appendln(max(rowCnt, colCnt))
            ^

ソースコード

diff #

import kotlin.math.max

fun main() {
    val builder = StringBuilder()

    val n = readInputLine().toInt()

    val s = readInputLine()
    val t = readInputLine()

    var rowCnt = 0

    for (c in s) {
        when (c) {
            '1' -> rowCnt++
            '2' -> rowCnt += n
        }
    }

    var colCnt = 0

    for (c in t) {
        when (c) {
            '1' -> colCnt++
            '2' -> colCnt += n
        }
    }

    builder.appendln(max(rowCnt, colCnt))

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}
0