結果

問題 No.224 文字列変更(easy)
ユーザー yuiyui
提出日時 2017-02-20 16:45:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 384 bytes
コンパイル時間 2,144 ms
コンパイル使用メモリ 75,064 KB
実行使用メモリ 54,224 KB
最終ジャッジ日時 2024-07-18 02:20:37
合計ジャッジ時間 5,008 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
52,700 KB
testcase_01 AC 108 ms
52,896 KB
testcase_02 AC 135 ms
54,080 KB
testcase_03 AC 114 ms
54,104 KB
testcase_04 AC 112 ms
54,224 KB
testcase_05 AC 125 ms
54,040 KB
testcase_06 AC 113 ms
53,896 KB
testcase_07 AC 106 ms
53,036 KB
testcase_08 AC 111 ms
54,032 KB
testcase_09 AC 112 ms
54,088 KB
testcase_10 AC 100 ms
52,780 KB
testcase_11 AC 115 ms
54,088 KB
testcase_12 AC 103 ms
52,844 KB
testcase_13 AC 99 ms
52,476 KB
testcase_14 AC 102 ms
52,940 KB
testcase_15 AC 106 ms
52,672 KB
testcase_16 AC 112 ms
53,996 KB
testcase_17 AC 122 ms
53,824 KB
testcase_18 AC 117 ms
54,020 KB
testcase_19 AC 112 ms
53,940 KB
testcase_20 AC 118 ms
53,960 KB
testcase_21 AC 112 ms
53,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	/**
	 * @param args
	 */
	public static void main(String[] args) {

		Scanner sc = new Scanner(System.in);
		int num = sc.nextInt();
		String aaa = sc.next();
		String bbb = sc.next();
		int count = 0;
		for (int i = 0; i < num; i++) {
			if (aaa.charAt(i) != bbb.charAt(i)) {
				count += 1;
			}
		}
		System.out.println(count);
	}
}
0