結果

問題 No.2920 Blood Type
ユーザー ImTabooImTaboo
提出日時 2024-11-24 13:31:54
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 290 ms / 2,000 ms
コード長 548 bytes
コンパイル時間 10,217 ms
コンパイル使用メモリ 437,424 KB
実行使用メモリ 54,444 KB
最終ジャッジ日時 2024-11-24 13:32:20
合計ジャッジ時間 20,940 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 257 ms
54,292 KB
testcase_01 AC 254 ms
54,276 KB
testcase_02 AC 257 ms
54,376 KB
testcase_03 AC 277 ms
54,244 KB
testcase_04 AC 247 ms
54,256 KB
testcase_05 AC 264 ms
54,356 KB
testcase_06 AC 266 ms
54,272 KB
testcase_07 AC 254 ms
54,080 KB
testcase_08 AC 283 ms
54,372 KB
testcase_09 AC 258 ms
54,160 KB
testcase_10 AC 253 ms
54,256 KB
testcase_11 AC 247 ms
54,248 KB
testcase_12 AC 278 ms
54,444 KB
testcase_13 AC 243 ms
54,144 KB
testcase_14 AC 247 ms
54,264 KB
testcase_15 AC 251 ms
54,172 KB
testcase_16 AC 256 ms
54,268 KB
testcase_17 AC 273 ms
54,372 KB
testcase_18 AC 256 ms
54,392 KB
testcase_19 AC 264 ms
54,304 KB
testcase_20 AC 265 ms
54,240 KB
testcase_21 AC 263 ms
54,320 KB
testcase_22 AC 274 ms
54,244 KB
testcase_23 AC 249 ms
54,236 KB
testcase_24 AC 251 ms
54,232 KB
testcase_25 AC 252 ms
54,260 KB
testcase_26 AC 262 ms
54,236 KB
testcase_27 AC 278 ms
54,272 KB
testcase_28 AC 253 ms
54,348 KB
testcase_29 AC 245 ms
54,140 KB
testcase_30 AC 264 ms
54,152 KB
testcase_31 AC 290 ms
54,128 KB
testcase_32 AC 254 ms
54,160 KB
testcase_33 AC 265 ms
54,152 KB
testcase_34 AC 277 ms
54,236 KB
testcase_35 AC 270 ms
54,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//https://yukicoder.me/problems/no/2920
 fun main() {
    val s = readln()
    val t = readln()

    val counts = arrayOf(0, 0, 0, 0)
    for(cs in s) {
        for(ct in t) {
            val c = classify(cs, ct)
            counts[c]++
        }
    }

    for(c in counts) {
        print("${c*25} ")
    }
    println()
}

fun classify(g1: Char, g2: Char): Int {
    val hasA = g1 == 'A' || g2 == 'A'
    val hasB = g1 == 'B' || g2 == 'B'

    return when {
        hasA && hasB -> 2
        hasA -> 0
        hasB -> 1
        else -> 3
    }
}
0