結果

問題 No.224 文字列変更(easy)
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 08:30:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 322 bytes
コンパイル時間 1,999 ms
コンパイル使用メモリ 73,980 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-07-18 02:39:05
合計ジャッジ時間 5,036 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
40,960 KB
testcase_01 AC 109 ms
40,968 KB
testcase_02 AC 126 ms
40,820 KB
testcase_03 AC 105 ms
41,116 KB
testcase_04 AC 117 ms
41,456 KB
testcase_05 AC 106 ms
41,260 KB
testcase_06 AC 119 ms
41,280 KB
testcase_07 AC 118 ms
41,012 KB
testcase_08 AC 119 ms
41,308 KB
testcase_09 AC 112 ms
40,968 KB
testcase_10 AC 115 ms
41,304 KB
testcase_11 AC 113 ms
40,904 KB
testcase_12 AC 119 ms
41,260 KB
testcase_13 AC 115 ms
41,080 KB
testcase_14 AC 114 ms
41,012 KB
testcase_15 AC 113 ms
41,388 KB
testcase_16 AC 120 ms
40,916 KB
testcase_17 AC 128 ms
40,788 KB
testcase_18 AC 109 ms
39,988 KB
testcase_19 AC 104 ms
41,472 KB
testcase_20 AC 114 ms
40,000 KB
testcase_21 AC 114 ms
41,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		int n = sc.nextInt();
		String s = sc.next();
		String t = sc.next();
		int ans = 0;
		for (int i=0; i<n; i++) {
			if (s.charAt(i) != t.charAt(i)) ans++;
		}
		System.out.println(ans);
		
		
	}
}
0