結果

問題 No.224 文字列変更(easy)
ユーザー くわいくわい
提出日時 2015-11-02 18:09:08
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 922 ms / 5,000 ms
コード長 328 bytes
コンパイル時間 9,213 ms
コンパイル使用メモリ 259,596 KB
実行使用メモリ 65,276 KB
最終ジャッジ日時 2024-06-27 10:19:12
合計ジャッジ時間 30,625 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 886 ms
65,000 KB
testcase_01 AC 882 ms
64,900 KB
testcase_02 AC 870 ms
65,224 KB
testcase_03 AC 893 ms
65,104 KB
testcase_04 AC 887 ms
65,128 KB
testcase_05 AC 864 ms
65,252 KB
testcase_06 AC 867 ms
65,036 KB
testcase_07 AC 885 ms
65,092 KB
testcase_08 AC 885 ms
65,100 KB
testcase_09 AC 893 ms
65,144 KB
testcase_10 AC 892 ms
65,276 KB
testcase_11 AC 896 ms
65,224 KB
testcase_12 AC 900 ms
65,148 KB
testcase_13 AC 902 ms
65,224 KB
testcase_14 AC 899 ms
65,092 KB
testcase_15 AC 902 ms
65,096 KB
testcase_16 AC 899 ms
65,028 KB
testcase_17 AC 908 ms
65,092 KB
testcase_18 AC 899 ms
65,196 KB
testcase_19 AC 905 ms
65,040 KB
testcase_20 AC 908 ms
65,172 KB
testcase_21 AC 922 ms
65,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Problem224 {

  def proc(S: String, T: String): Int = {
    S.zip(T).count(p => p._1 != p._2)
  }

  def main(args: Array[String]) = {
    val sc = new Scanner(System.in)
    val n = sc.nextInt()
    val S = sc.next()
    val T = sc.next()

    val result = proc(S, T)
    println(result)
  }
}
0