結果

問題 No.1225 I hate I hate Matrix Construction
ユーザー rutilicusrutilicus
提出日時 2020-09-12 12:04:04
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 275 ms / 2,000 ms
コード長 848 bytes
コンパイル時間 10,280 ms
コンパイル使用メモリ 437,600 KB
実行使用メモリ 51,336 KB
最終ジャッジ日時 2024-06-10 05:45:56
合計ジャッジ時間 21,296 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 259 ms
51,152 KB
testcase_01 AC 255 ms
51,016 KB
testcase_02 AC 267 ms
50,988 KB
testcase_03 AC 261 ms
51,068 KB
testcase_04 AC 260 ms
51,320 KB
testcase_05 AC 257 ms
51,032 KB
testcase_06 AC 262 ms
50,968 KB
testcase_07 AC 258 ms
50,928 KB
testcase_08 AC 258 ms
50,956 KB
testcase_09 AC 257 ms
50,864 KB
testcase_10 AC 264 ms
51,024 KB
testcase_11 AC 265 ms
50,952 KB
testcase_12 AC 266 ms
50,928 KB
testcase_13 AC 275 ms
51,104 KB
testcase_14 AC 259 ms
50,916 KB
testcase_15 AC 262 ms
51,192 KB
testcase_16 AC 268 ms
51,056 KB
testcase_17 AC 264 ms
50,940 KB
testcase_18 AC 273 ms
51,084 KB
testcase_19 AC 262 ms
50,952 KB
testcase_20 AC 263 ms
50,936 KB
testcase_21 AC 267 ms
51,000 KB
testcase_22 AC 266 ms
51,184 KB
testcase_23 AC 274 ms
51,336 KB
testcase_24 AC 269 ms
51,056 KB
testcase_25 AC 269 ms
51,224 KB
testcase_26 AC 262 ms
50,968 KB
testcase_27 AC 270 ms
50,888 KB
testcase_28 AC 266 ms
51,208 KB
testcase_29 AC 270 ms
51,100 KB
testcase_30 AC 263 ms
51,064 KB
testcase_31 AC 263 ms
51,100 KB
testcase_32 AC 266 ms
51,100 KB
testcase_33 AC 260 ms
51,004 KB
testcase_34 AC 261 ms
50,944 KB
testcase_35 AC 266 ms
50,772 KB
testcase_36 AC 266 ms
51,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:41: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(ans)
            ^

ソースコード

diff #

import kotlin.math.max

fun main() {
    val builder = StringBuilder()

    // なにもわからん
    val n = readInputLine().toInt()

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

    var s1Cnt = 0
    var s2Cnt = 0
    var t1Cnt = 0
    var t2Cnt = 0

    for (c in s) {
        when (c) {
            '1' -> s1Cnt++
            '2' -> s2Cnt++
        }
    }

    for (c in t) {
        when (c) {
            '1' -> t1Cnt++
            '2' -> t2Cnt++
        }
    }

    var ans = if (s2Cnt != 0 && t2Cnt != 0) {
        n * (s2Cnt + t2Cnt) - s2Cnt * t2Cnt
    } else if (t2Cnt != 0) {
        n * t2Cnt + t1Cnt
    } else if (s2Cnt != 0) {
        n * s2Cnt + s1Cnt
    } else {
        max(s1Cnt, t1Cnt)
    }

    builder.appendln(ans)

    print(builder.toString())
}

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