結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
50,048 KB
testcase_01 AC 48 ms
50,092 KB
testcase_02 AC 48 ms
50,268 KB
testcase_03 AC 47 ms
50,200 KB
testcase_04 AC 47 ms
50,368 KB
testcase_05 AC 51 ms
50,236 KB
testcase_06 AC 49 ms
50,364 KB
testcase_07 AC 49 ms
50,124 KB
testcase_08 AC 49 ms
50,372 KB
testcase_09 AC 47 ms
49,968 KB
testcase_10 AC 49 ms
50,256 KB
testcase_11 AC 48 ms
50,084 KB
testcase_12 AC 46 ms
50,164 KB
testcase_13 AC 47 ms
50,228 KB
testcase_14 AC 50 ms
50,304 KB
testcase_15 AC 49 ms
50,252 KB
testcase_16 AC 50 ms
50,212 KB
testcase_17 AC 49 ms
50,312 KB
testcase_18 AC 50 ms
50,272 KB
testcase_19 AC 48 ms
50,232 KB
testcase_20 AC 51 ms
49,948 KB
testcase_21 AC 50 ms
50,008 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