結果

問題 No.224 文字列変更(easy)
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-30 17:08:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 5,000 ms
コード長 668 bytes
コンパイル時間 2,129 ms
コンパイル使用メモリ 74,760 KB
実行使用メモリ 37,260 KB
最終ジャッジ日時 2024-07-18 02:22:20
合計ジャッジ時間 4,059 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,608 KB
testcase_01 AC 53 ms
36,784 KB
testcase_02 AC 51 ms
36,756 KB
testcase_03 AC 53 ms
36,352 KB
testcase_04 AC 51 ms
36,488 KB
testcase_05 AC 51 ms
36,932 KB
testcase_06 AC 51 ms
36,472 KB
testcase_07 AC 52 ms
36,908 KB
testcase_08 AC 52 ms
37,260 KB
testcase_09 AC 52 ms
36,660 KB
testcase_10 AC 53 ms
36,924 KB
testcase_11 AC 53 ms
36,980 KB
testcase_12 AC 54 ms
36,468 KB
testcase_13 AC 52 ms
36,692 KB
testcase_14 AC 54 ms
36,788 KB
testcase_15 AC 52 ms
36,660 KB
testcase_16 AC 53 ms
36,584 KB
testcase_17 AC 54 ms
36,640 KB
testcase_18 AC 53 ms
36,348 KB
testcase_19 AC 53 ms
36,664 KB
testcase_20 AC 53 ms
36,468 KB
testcase_21 AC 53 ms
36,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

import static java.lang.System.in;


public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        int n = Integer.parseInt(reader.readLine());
        String S = reader.readLine();
        String T = reader.readLine();
        int changeCounter = 0;
        for (int i = 0; i < n; i++) {
            if(S.charAt(i)!=T.charAt(i)) {
                changeCounter+=1;
            }
        }
        System.out.println(changeCounter);
    }
}
0