結果

問題 No.717 ファッションへのこだわり
ユーザー Pump0129Pump0129
提出日時 2018-08-19 12:29:16
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 347 ms / 2,000 ms
コード長 681 bytes
コンパイル時間 10,926 ms
コンパイル使用メモリ 436,880 KB
実行使用メモリ 51,348 KB
最終ジャッジ日時 2024-11-20 16:38:04
合計ジャッジ時間 16,002 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
50,652 KB
testcase_01 AC 307 ms
51,032 KB
testcase_02 AC 303 ms
51,120 KB
testcase_03 AC 304 ms
51,068 KB
testcase_04 AC 300 ms
50,996 KB
testcase_05 AC 304 ms
50,924 KB
testcase_06 AC 308 ms
51,144 KB
testcase_07 AC 331 ms
51,040 KB
testcase_08 AC 347 ms
51,348 KB
testcase_09 AC 343 ms
51,240 KB
testcase_10 AC 333 ms
51,072 KB
testcase_11 AC 336 ms
51,264 KB
testcase_12 AC 336 ms
51,020 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:17:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:19:9: warning: variable 'numN' is never used
    val numN = numArray[0].toInt()
        ^
Main.kt:20:9: warning: variable 'numM' is never used
    val numM = numArray[1].toInt()
        ^

ソースコード

diff #

package net.ipipip0129.kotlin.yukicoder

import kotlin.math.min

fun abCount(charArray: CharArray): Array<Int> {
    var aCount = 0
    var bCount = 0
    charArray.forEach {
        when (it) {
            'A' -> aCount++
            'B' -> bCount++
        }
    }
    return arrayOf(aCount, bCount)
}

fun main(args: Array<String>) {
    val numArray = readLine()!!.split(" ")
    val numN = numArray[0].toInt()
    val numM = numArray[1].toInt()

    val sCountArray = abCount(readLine()!!.toCharArray())
    val tCountArray = abCount(readLine()!!.toCharArray())

    println(min(sCountArray[0], tCountArray[0]) + min(sCountArray[1], tCountArray[1]))
}
0