結果

問題 No.224 文字列変更(easy)
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2020-03-22 01:19:37
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 292 ms / 5,000 ms
コード長 133 bytes
コンパイル時間 13,912 ms
コンパイル使用メモリ 406,036 KB
実行使用メモリ 53,360 KB
最終ジャッジ日時 2023-09-25 02:56:40
合計ジャッジ時間 21,232 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 276 ms
52,684 KB
testcase_01 AC 292 ms
52,848 KB
testcase_02 AC 283 ms
52,876 KB
testcase_03 AC 282 ms
52,948 KB
testcase_04 AC 282 ms
52,720 KB
testcase_05 AC 283 ms
52,892 KB
testcase_06 AC 289 ms
52,684 KB
testcase_07 AC 283 ms
52,776 KB
testcase_08 AC 282 ms
52,612 KB
testcase_09 AC 282 ms
52,900 KB
testcase_10 AC 281 ms
52,660 KB
testcase_11 AC 278 ms
52,740 KB
testcase_12 AC 282 ms
53,360 KB
testcase_13 AC 280 ms
52,948 KB
testcase_14 AC 279 ms
52,784 KB
testcase_15 AC 277 ms
52,636 KB
testcase_16 AC 282 ms
52,836 KB
testcase_17 AC 288 ms
52,984 KB
testcase_18 AC 290 ms
52,836 KB
testcase_19 AC 290 ms
52,744 KB
testcase_20 AC 288 ms
53,088 KB
testcase_21 AC 287 ms
52,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    readLine()
    val a = readLine()!!
    val b = readLine()!!
    println((a zip b).count { (ca, cb) -> ca != cb })
}
0