結果

問題 No.224 文字列変更(easy)
ユーザー ぴろずぴろず
提出日時 2015-06-12 22:21:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 364 bytes
コンパイル時間 2,162 ms
コンパイル使用メモリ 74,916 KB
実行使用メモリ 41,512 KB
最終ジャッジ日時 2024-07-18 01:57:21
合計ジャッジ時間 6,260 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,308 KB
testcase_01 AC 137 ms
40,968 KB
testcase_02 AC 131 ms
40,900 KB
testcase_03 AC 128 ms
41,152 KB
testcase_04 AC 130 ms
41,440 KB
testcase_05 AC 124 ms
41,088 KB
testcase_06 AC 131 ms
41,356 KB
testcase_07 AC 131 ms
40,952 KB
testcase_08 AC 131 ms
41,252 KB
testcase_09 AC 130 ms
40,772 KB
testcase_10 AC 129 ms
41,408 KB
testcase_11 AC 131 ms
41,436 KB
testcase_12 AC 130 ms
41,280 KB
testcase_13 AC 131 ms
41,384 KB
testcase_14 AC 131 ms
41,512 KB
testcase_15 AC 131 ms
40,708 KB
testcase_16 AC 131 ms
41,412 KB
testcase_17 AC 133 ms
41,044 KB
testcase_18 AC 138 ms
41,368 KB
testcase_19 AC 137 ms
41,148 KB
testcase_20 AC 141 ms
41,132 KB
testcase_21 AC 135 ms
40,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no224;

import java.util.Scanner;

public class Main {

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

}
0