結果

問題 No.224 文字列変更(easy)
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-01-10 23:15:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 644 bytes
コンパイル時間 1,821 ms
コンパイル使用メモリ 75,380 KB
実行使用メモリ 41,456 KB
最終ジャッジ日時 2024-07-18 02:20:09
合計ジャッジ時間 5,134 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,240 KB
testcase_01 AC 112 ms
41,248 KB
testcase_02 AC 129 ms
40,864 KB
testcase_03 AC 115 ms
40,808 KB
testcase_04 AC 117 ms
40,804 KB
testcase_05 AC 118 ms
41,012 KB
testcase_06 AC 117 ms
41,020 KB
testcase_07 AC 106 ms
41,196 KB
testcase_08 AC 103 ms
41,056 KB
testcase_09 AC 116 ms
41,456 KB
testcase_10 AC 119 ms
41,024 KB
testcase_11 AC 108 ms
41,232 KB
testcase_12 AC 116 ms
41,048 KB
testcase_13 AC 114 ms
41,136 KB
testcase_14 AC 114 ms
41,208 KB
testcase_15 AC 114 ms
41,148 KB
testcase_16 AC 105 ms
41,176 KB
testcase_17 AC 116 ms
41,456 KB
testcase_18 AC 121 ms
40,984 KB
testcase_19 AC 120 ms
40,908 KB
testcase_20 AC 114 ms
41,244 KB
testcase_21 AC 123 ms
41,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        String s = in.next();
        String t = in.next();
        int count = 0;
        char[] s_to_c = s.toCharArray();
        char[] t_to_c = t.toCharArray();

        for(int i=0; i<n; i++) {
            if(s_to_c[i] != t_to_c[i]) {
                count++;
            } else {
                // nothing
            }
        }

        System.out.println(count);

        in.close();
    }
}
0