結果

問題 No.224 文字列変更(easy)
ユーザー mosmos_21mosmos_21
提出日時 2017-06-20 11:46:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 433 bytes
コンパイル時間 4,875 ms
コンパイル使用メモリ 74,436 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-07-18 02:24:25
合計ジャッジ時間 5,171 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
53,944 KB
testcase_01 AC 120 ms
54,180 KB
testcase_02 AC 119 ms
54,140 KB
testcase_03 AC 118 ms
54,072 KB
testcase_04 AC 104 ms
53,112 KB
testcase_05 AC 118 ms
53,988 KB
testcase_06 AC 112 ms
53,740 KB
testcase_07 AC 109 ms
53,188 KB
testcase_08 AC 124 ms
53,768 KB
testcase_09 AC 103 ms
53,008 KB
testcase_10 AC 120 ms
54,188 KB
testcase_11 AC 117 ms
54,364 KB
testcase_12 AC 104 ms
52,864 KB
testcase_13 AC 117 ms
54,104 KB
testcase_14 AC 113 ms
54,348 KB
testcase_15 AC 125 ms
54,280 KB
testcase_16 AC 105 ms
52,936 KB
testcase_17 AC 117 ms
54,200 KB
testcase_18 AC 120 ms
54,328 KB
testcase_19 AC 119 ms
54,028 KB
testcase_20 AC 120 ms
54,280 KB
testcase_21 AC 129 ms
54,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    static Scanner in = new Scanner(System.in);

    public static void main(String[] args) {
        int N = Integer.parseInt(in.nextLine());
        String s = in.next(), t = in.next();
        int ans = 0;
        for(int i = 0; i < s.length(); i++){
            if(s.charAt(i) != t.charAt(i)){
                ans++;
            }
        }
        System.out.println(ans);
    }
}
0