結果

問題 No.224 文字列変更(easy)
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-25 11:36:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 377 bytes
コンパイル時間 1,861 ms
コンパイル使用メモリ 74,688 KB
実行使用メモリ 54,520 KB
最終ジャッジ日時 2024-07-18 02:24:56
合計ジャッジ時間 5,083 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
52,740 KB
testcase_01 AC 113 ms
53,904 KB
testcase_02 AC 107 ms
54,520 KB
testcase_03 AC 98 ms
54,520 KB
testcase_04 AC 108 ms
53,800 KB
testcase_05 AC 105 ms
53,652 KB
testcase_06 AC 97 ms
53,000 KB
testcase_07 AC 108 ms
53,792 KB
testcase_08 AC 113 ms
53,928 KB
testcase_09 AC 105 ms
52,932 KB
testcase_10 AC 115 ms
54,060 KB
testcase_11 AC 119 ms
54,016 KB
testcase_12 AC 108 ms
53,044 KB
testcase_13 AC 116 ms
53,916 KB
testcase_14 AC 108 ms
53,848 KB
testcase_15 AC 111 ms
53,956 KB
testcase_16 AC 117 ms
54,064 KB
testcase_17 AC 123 ms
53,972 KB
testcase_18 AC 119 ms
54,092 KB
testcase_19 AC 121 ms
54,120 KB
testcase_20 AC 119 ms
54,252 KB
testcase_21 AC 122 ms
54,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    String S = sc.next();
    String T = sc.next();
    int ans = 0;
    for(int i = 0; i < n; i++) {
      char c1 = S.charAt(i);
      char c2 = T.charAt(i);
      if(c1 != c2) ans++;
    }
    System.out.println(ans);
  }
}
0