結果

問題 No.224 文字列変更(easy)
ユーザー dazydazy
提出日時 2017-02-27 14:31:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 422 bytes
コンパイル時間 2,784 ms
コンパイル使用メモリ 74,544 KB
実行使用メモリ 54,208 KB
最終ジャッジ日時 2024-07-18 02:21:04
合計ジャッジ時間 6,216 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,048 KB
testcase_01 AC 119 ms
53,916 KB
testcase_02 AC 120 ms
53,940 KB
testcase_03 AC 114 ms
54,012 KB
testcase_04 AC 118 ms
53,940 KB
testcase_05 AC 119 ms
53,932 KB
testcase_06 AC 121 ms
53,972 KB
testcase_07 AC 123 ms
54,008 KB
testcase_08 AC 122 ms
53,812 KB
testcase_09 AC 116 ms
53,816 KB
testcase_10 AC 104 ms
53,004 KB
testcase_11 AC 118 ms
54,204 KB
testcase_12 AC 116 ms
53,856 KB
testcase_13 AC 101 ms
52,896 KB
testcase_14 AC 116 ms
54,108 KB
testcase_15 AC 114 ms
53,672 KB
testcase_16 AC 124 ms
54,004 KB
testcase_17 AC 125 ms
54,132 KB
testcase_18 AC 107 ms
52,760 KB
testcase_19 AC 100 ms
52,604 KB
testcase_20 AC 117 ms
54,208 KB
testcase_21 AC 117 ms
53,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        int ans = 0;

        int length = scan.nextInt();
        String S = scan.next();
        String T = scan.next();

        for (int i = 0; i < length; i++) {
            if (!S.substring(i, i+1).equals(T.substring(i, i+1))) ans++;
        }
        System.out.println(ans);
    }
}
0