結果

問題 No.224 文字列変更(easy)
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-09 19:00:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 440 bytes
コンパイル時間 3,330 ms
コンパイル使用メモリ 77,488 KB
実行使用メモリ 54,316 KB
最終ジャッジ日時 2024-07-18 02:14:47
合計ジャッジ時間 7,198 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
52,744 KB
testcase_01 AC 121 ms
54,016 KB
testcase_02 AC 110 ms
54,048 KB
testcase_03 AC 117 ms
53,692 KB
testcase_04 AC 120 ms
53,892 KB
testcase_05 AC 119 ms
53,820 KB
testcase_06 AC 110 ms
53,164 KB
testcase_07 AC 117 ms
54,316 KB
testcase_08 AC 111 ms
53,920 KB
testcase_09 AC 105 ms
52,832 KB
testcase_10 AC 115 ms
53,876 KB
testcase_11 AC 117 ms
53,920 KB
testcase_12 AC 116 ms
53,916 KB
testcase_13 AC 122 ms
54,000 KB
testcase_14 AC 118 ms
53,988 KB
testcase_15 AC 104 ms
52,836 KB
testcase_16 AC 101 ms
52,924 KB
testcase_17 AC 106 ms
52,804 KB
testcase_18 AC 139 ms
53,916 KB
testcase_19 AC 111 ms
52,936 KB
testcase_20 AC 120 ms
54,048 KB
testcase_21 AC 119 ms
54,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise72{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int n = sc.nextInt();

    String s = sc.next();
    String t = sc.next();

    char[] sArray = s.toCharArray();
    char[] tArray = t.toCharArray();

    int count = 0;

    for(int i = 0; i < n; i++){
      if(sArray[i] != tArray[i]){
        count++;
      }
    }
    System.out.println(count);
  }
}
0