結果

問題 No.224 文字列変更(easy)
ユーザー spacenautspacenaut
提出日時 2016-05-22 17:06:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 319 bytes
コンパイル時間 2,647 ms
コンパイル使用メモリ 74,896 KB
実行使用メモリ 41,480 KB
最終ジャッジ日時 2024-07-18 02:14:12
合計ジャッジ時間 5,912 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,196 KB
testcase_01 AC 134 ms
41,036 KB
testcase_02 AC 118 ms
40,364 KB
testcase_03 AC 131 ms
41,092 KB
testcase_04 AC 132 ms
41,480 KB
testcase_05 AC 131 ms
41,340 KB
testcase_06 AC 132 ms
40,820 KB
testcase_07 AC 116 ms
39,980 KB
testcase_08 AC 129 ms
41,008 KB
testcase_09 AC 130 ms
40,796 KB
testcase_10 AC 133 ms
40,992 KB
testcase_11 AC 122 ms
39,892 KB
testcase_12 AC 136 ms
41,344 KB
testcase_13 AC 133 ms
41,012 KB
testcase_14 AC 131 ms
41,044 KB
testcase_15 AC 130 ms
40,784 KB
testcase_16 AC 131 ms
40,928 KB
testcase_17 AC 135 ms
41,372 KB
testcase_18 AC 136 ms
41,020 KB
testcase_19 AC 139 ms
41,380 KB
testcase_20 AC 136 ms
41,068 KB
testcase_21 AC 124 ms
40,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class No0224{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		String s = sc.next();
		String t = sc.next();
		int cnt = 0;

		for(int i = 0; i < n; i++){
			if(s.charAt(i) != t.charAt(i)){
				cnt++;
			}
		}
		System.out.println(cnt);
	}
}
0