結果

問題 No.224 文字列変更(easy)
ユーザー spaciaspacia
提出日時 2015-12-29 15:10:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 510 bytes
コンパイル時間 2,137 ms
コンパイル使用メモリ 74,912 KB
実行使用メモリ 50,440 KB
最終ジャッジ日時 2024-07-18 02:11:17
合計ジャッジ時間 3,639 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
50,264 KB
testcase_01 AC 47 ms
50,400 KB
testcase_02 AC 47 ms
50,380 KB
testcase_03 AC 51 ms
50,296 KB
testcase_04 AC 50 ms
50,340 KB
testcase_05 AC 47 ms
50,372 KB
testcase_06 AC 47 ms
49,932 KB
testcase_07 AC 46 ms
50,284 KB
testcase_08 AC 46 ms
50,432 KB
testcase_09 AC 50 ms
50,320 KB
testcase_10 AC 50 ms
50,436 KB
testcase_11 AC 49 ms
50,028 KB
testcase_12 AC 49 ms
50,244 KB
testcase_13 AC 48 ms
50,360 KB
testcase_14 AC 47 ms
50,440 KB
testcase_15 AC 48 ms
50,368 KB
testcase_16 AC 48 ms
50,148 KB
testcase_17 AC 46 ms
50,376 KB
testcase_18 AC 47 ms
50,196 KB
testcase_19 AC 48 ms
50,344 KB
testcase_20 AC 46 ms
50,276 KB
testcase_21 AC 47 ms
50,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main224 {
	
	public static void out (Object out) {
		System.out.println(out);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int ans = 0;
		int n = Integer.parseInt(br.readLine());
		String s = br.readLine();
		String t = br.readLine();
		
		for (int i = 0; i < n; i++) {
			if (s.charAt(i) != t.charAt(i)) ans++;
		}
		
		out(ans);
		
	}
}
0