結果

問題 No.224 文字列変更(easy)
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-24 00:57:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 495 bytes
コンパイル時間 2,804 ms
コンパイル使用メモリ 74,884 KB
実行使用メモリ 50,412 KB
最終ジャッジ日時 2024-07-18 02:28:46
合計ジャッジ時間 4,562 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
50,232 KB
testcase_01 AC 45 ms
49,884 KB
testcase_02 AC 47 ms
50,208 KB
testcase_03 AC 47 ms
50,368 KB
testcase_04 AC 46 ms
50,008 KB
testcase_05 AC 47 ms
50,208 KB
testcase_06 AC 48 ms
50,392 KB
testcase_07 AC 46 ms
50,304 KB
testcase_08 AC 46 ms
50,328 KB
testcase_09 AC 49 ms
50,296 KB
testcase_10 AC 47 ms
50,340 KB
testcase_11 AC 46 ms
50,152 KB
testcase_12 AC 48 ms
50,192 KB
testcase_13 AC 47 ms
50,152 KB
testcase_14 AC 48 ms
50,384 KB
testcase_15 AC 47 ms
50,232 KB
testcase_16 AC 46 ms
50,308 KB
testcase_17 AC 47 ms
50,412 KB
testcase_18 AC 47 ms
50,168 KB
testcase_19 AC 48 ms
50,160 KB
testcase_20 AC 46 ms
50,148 KB
testcase_21 AC 47 ms
50,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No224 {
	public static void main(String[] args) throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		char[] chrS = br.readLine().toCharArray();
		char[] chrT = br.readLine().toCharArray();
		int ans = 0;
		for(int i=0; i < n; i++){
			if(chrS[i] != chrT[i]) ans++;
		}
		System.out.println(ans);
	}
}
0