結果

問題 No.224 文字列変更(easy)
ユーザー r.suzukir.suzuki
提出日時 2015-12-13 16:20:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 386 bytes
コンパイル時間 4,229 ms
コンパイル使用メモリ 74,816 KB
実行使用メモリ 54,660 KB
最終ジャッジ日時 2024-07-18 02:10:59
合計ジャッジ時間 7,146 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,552 KB
testcase_01 AC 147 ms
54,140 KB
testcase_02 AC 135 ms
53,932 KB
testcase_03 AC 131 ms
54,152 KB
testcase_04 AC 132 ms
54,232 KB
testcase_05 AC 133 ms
54,360 KB
testcase_06 AC 133 ms
54,008 KB
testcase_07 AC 132 ms
54,480 KB
testcase_08 AC 132 ms
54,040 KB
testcase_09 AC 132 ms
54,652 KB
testcase_10 AC 133 ms
54,660 KB
testcase_11 AC 133 ms
53,868 KB
testcase_12 AC 132 ms
54,188 KB
testcase_13 AC 135 ms
54,020 KB
testcase_14 AC 132 ms
54,460 KB
testcase_15 AC 130 ms
54,096 KB
testcase_16 AC 131 ms
54,096 KB
testcase_17 AC 136 ms
54,384 KB
testcase_18 AC 137 ms
54,432 KB
testcase_19 AC 136 ms
53,788 KB
testcase_20 AC 136 ms
54,452 KB
testcase_21 AC 135 ms
54,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

public class No_224 {

	public static void main(String[] args) {
		java.util.Scanner sc = new java.util.Scanner(System.in);
		int n = sc.nextInt();
		String S = sc.next();
		String T = sc.next();
		char Sc;
		char Tc;
		int count = 0;

		for (int i = 0; i < n; i++) {
			Sc = S.charAt(i);
			Tc = T.charAt(i);
			if (Sc != Tc) {
				count++;
			}
		}
		System.out.println(count);

	}

}
0