結果

問題 No.224 文字列変更(easy)
ユーザー yagi2yagi2
提出日時 2017-04-21 11:16:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 457 bytes
コンパイル時間 1,807 ms
コンパイル使用メモリ 75,140 KB
実行使用メモリ 54,264 KB
最終ジャッジ日時 2024-07-18 02:22:03
合計ジャッジ時間 5,116 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
53,916 KB
testcase_01 AC 132 ms
54,260 KB
testcase_02 AC 110 ms
54,072 KB
testcase_03 AC 116 ms
54,096 KB
testcase_04 AC 109 ms
53,900 KB
testcase_05 AC 98 ms
53,016 KB
testcase_06 AC 100 ms
53,060 KB
testcase_07 AC 113 ms
54,156 KB
testcase_08 AC 101 ms
53,008 KB
testcase_09 AC 115 ms
53,992 KB
testcase_10 AC 101 ms
52,764 KB
testcase_11 AC 121 ms
54,184 KB
testcase_12 AC 118 ms
53,888 KB
testcase_13 AC 113 ms
53,768 KB
testcase_14 AC 115 ms
53,984 KB
testcase_15 AC 115 ms
54,088 KB
testcase_16 AC 115 ms
53,916 KB
testcase_17 AC 131 ms
54,244 KB
testcase_18 AC 134 ms
53,908 KB
testcase_19 AC 132 ms
54,184 KB
testcase_20 AC 116 ms
54,228 KB
testcase_21 AC 129 ms
54,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Objects;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int N = Integer.parseInt(sc.next());
        String[] S = sc.next().split("");
        String[] T = sc.next().split("");

        int cnt = 0;
        for (int i = 0; i < N; i++) {
            if (!Objects.equals(S[i], T[i])) cnt++;
        }

        System.out.println(cnt);
    }
}
0