結果

問題 No.224 文字列変更(easy)
ユーザー javyjavy
提出日時 2015-11-11 16:58:17
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 269 ms / 5,000 ms
コード長 478 bytes
コンパイル時間 12,139 ms
コンパイル使用メモリ 429,628 KB
実行使用メモリ 49,912 KB
最終ジャッジ日時 2024-07-18 02:09:58
合計ジャッジ時間 18,239 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 252 ms
49,576 KB
testcase_01 AC 269 ms
49,860 KB
testcase_02 AC 246 ms
49,580 KB
testcase_03 AC 245 ms
49,488 KB
testcase_04 AC 250 ms
49,800 KB
testcase_05 AC 247 ms
49,912 KB
testcase_06 AC 246 ms
49,496 KB
testcase_07 AC 265 ms
49,820 KB
testcase_08 AC 257 ms
49,472 KB
testcase_09 AC 252 ms
49,604 KB
testcase_10 AC 247 ms
49,796 KB
testcase_11 AC 243 ms
49,444 KB
testcase_12 AC 247 ms
49,452 KB
testcase_13 AC 252 ms
49,828 KB
testcase_14 AC 244 ms
49,428 KB
testcase_15 AC 245 ms
49,568 KB
testcase_16 AC 251 ms
49,524 KB
testcase_17 AC 257 ms
49,644 KB
testcase_18 AC 247 ms
49,508 KB
testcase_19 AC 251 ms
49,684 KB
testcase_20 AC 252 ms
49,740 KB
testcase_21 AC 247 ms
49,632 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package Yukicoder

/**
 * Created by hichikawa on 2015/11/11.
 */
fun main(args: Array<String>) {
    fun readLineLong() : Long {
        val str = readLine() as String
        return str.toLong()
    }

    val num = readLineLong()
    val inputStr1 = readLine() as String
    val inputStr2 = readLine() as String
    var count = 0
    for (i in  0..(num-1)) {
        if (inputStr1[i.toInt()] != inputStr2[i.toInt()]) {
            count++
        }
    }
    println(count)
}
0