結果

問題 No.224 文字列変更(easy)
ユーザー atkrymatkrym
提出日時 2016-10-23 17:46:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 466 bytes
コンパイル時間 2,047 ms
コンパイル使用メモリ 74,468 KB
実行使用メモリ 54,308 KB
最終ジャッジ日時 2024-07-18 02:18:15
合計ジャッジ時間 5,637 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,132 KB
testcase_01 AC 127 ms
54,192 KB
testcase_02 AC 124 ms
53,936 KB
testcase_03 AC 134 ms
53,936 KB
testcase_04 AC 126 ms
54,152 KB
testcase_05 AC 122 ms
53,812 KB
testcase_06 AC 108 ms
52,728 KB
testcase_07 AC 123 ms
54,124 KB
testcase_08 AC 124 ms
54,052 KB
testcase_09 AC 135 ms
53,888 KB
testcase_10 AC 134 ms
53,676 KB
testcase_11 AC 134 ms
54,124 KB
testcase_12 AC 130 ms
54,192 KB
testcase_13 AC 129 ms
54,084 KB
testcase_14 AC 125 ms
54,020 KB
testcase_15 AC 127 ms
54,308 KB
testcase_16 AC 127 ms
54,200 KB
testcase_17 AC 126 ms
54,060 KB
testcase_18 AC 129 ms
53,924 KB
testcase_19 AC 130 ms
54,244 KB
testcase_20 AC 133 ms
54,232 KB
testcase_21 AC 123 ms
53,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.text.*;

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