結果

問題 No.224 文字列変更(easy)
ユーザー YamaKasaYamaKasa
提出日時 2018-04-30 01:06:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 393 bytes
コンパイル時間 1,799 ms
コンパイル使用メモリ 74,324 KB
実行使用メモリ 54,448 KB
最終ジャッジ日時 2024-07-18 02:35:12
合計ジャッジ時間 5,108 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
54,132 KB
testcase_01 AC 105 ms
53,044 KB
testcase_02 AC 101 ms
52,788 KB
testcase_03 AC 115 ms
54,296 KB
testcase_04 AC 110 ms
53,956 KB
testcase_05 AC 99 ms
52,780 KB
testcase_06 AC 100 ms
52,808 KB
testcase_07 AC 96 ms
52,640 KB
testcase_08 AC 106 ms
53,364 KB
testcase_09 AC 111 ms
53,856 KB
testcase_10 AC 99 ms
52,752 KB
testcase_11 AC 101 ms
52,664 KB
testcase_12 AC 112 ms
53,804 KB
testcase_13 AC 99 ms
52,784 KB
testcase_14 AC 110 ms
54,448 KB
testcase_15 AC 101 ms
53,060 KB
testcase_16 AC 107 ms
53,160 KB
testcase_17 AC 106 ms
53,000 KB
testcase_18 AC 116 ms
54,088 KB
testcase_19 AC 112 ms
53,120 KB
testcase_20 AC 119 ms
53,904 KB
testcase_21 AC 110 ms
53,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int n = scan.nextInt();
		String S = scan.next();
		String T = scan.next();
		scan.close();

		int ans = 0;
		for(int i = 0; i < n; i++) {
			char c1 = S.charAt(i);
			char c2 = T.charAt(i);
			if(c1 != c2) {
				ans ++;
			}
		}
		System.out.println(ans);
	}
}
0