結果

問題 No.224 文字列変更(easy)
ユーザー mesh1nekomesh1neko
提出日時 2015-06-16 23:31:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 647 bytes
コンパイル時間 2,080 ms
コンパイル使用メモリ 74,620 KB
実行使用メモリ 37,132 KB
最終ジャッジ日時 2024-07-18 02:03:40
合計ジャッジ時間 3,941 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,928 KB
testcase_01 AC 54 ms
36,644 KB
testcase_02 AC 53 ms
36,600 KB
testcase_03 AC 53 ms
37,084 KB
testcase_04 AC 53 ms
36,960 KB
testcase_05 AC 52 ms
36,788 KB
testcase_06 AC 53 ms
36,656 KB
testcase_07 AC 53 ms
37,036 KB
testcase_08 AC 52 ms
36,924 KB
testcase_09 AC 52 ms
36,724 KB
testcase_10 AC 51 ms
37,132 KB
testcase_11 AC 53 ms
36,772 KB
testcase_12 AC 52 ms
36,764 KB
testcase_13 AC 53 ms
36,932 KB
testcase_14 AC 52 ms
36,448 KB
testcase_15 AC 51 ms
36,784 KB
testcase_16 AC 53 ms
36,928 KB
testcase_17 AC 53 ms
36,568 KB
testcase_18 AC 55 ms
36,616 KB
testcase_19 AC 54 ms
36,784 KB
testcase_20 AC 54 ms
36,352 KB
testcase_21 AC 54 ms
36,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
    public static void main(String[] args) throws Exception {
        // Here your code !
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String n = br.readLine();
        String S = br.readLine();
        String T = br.readLine();
                
        Integer convertCount = 0;
        
        if (!S.equals(T)) {
            for (int i = 0; i < Integer.parseInt(n); i++) {
                if (S.charAt(i) != T.charAt(i)) convertCount++;;
            }
        }
        System.out.println(convertCount);
    }
}
0