結果

問題 No.224 文字列変更(easy)
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2020-03-22 01:19:37
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 280 ms / 5,000 ms
コード長 133 bytes
コンパイル時間 11,076 ms
コンパイル使用メモリ 433,696 KB
実行使用メモリ 56,988 KB
最終ジャッジ日時 2024-07-18 02:45:55
合計ジャッジ時間 19,157 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 263 ms
56,760 KB
testcase_01 AC 265 ms
56,716 KB
testcase_02 AC 266 ms
56,812 KB
testcase_03 AC 261 ms
56,932 KB
testcase_04 AC 266 ms
56,772 KB
testcase_05 AC 263 ms
56,932 KB
testcase_06 AC 260 ms
56,736 KB
testcase_07 AC 269 ms
56,936 KB
testcase_08 AC 258 ms
56,944 KB
testcase_09 AC 265 ms
56,508 KB
testcase_10 AC 267 ms
56,872 KB
testcase_11 AC 257 ms
56,700 KB
testcase_12 AC 261 ms
56,768 KB
testcase_13 AC 280 ms
56,924 KB
testcase_14 AC 272 ms
56,708 KB
testcase_15 AC 259 ms
56,740 KB
testcase_16 AC 260 ms
56,760 KB
testcase_17 AC 269 ms
56,816 KB
testcase_18 AC 264 ms
56,972 KB
testcase_19 AC 263 ms
56,808 KB
testcase_20 AC 273 ms
56,988 KB
testcase_21 AC 273 ms
56,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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