結果

問題 No.224 文字列変更(easy)
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-06-23 16:41:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 866 bytes
コンパイル時間 3,868 ms
コンパイル使用メモリ 75,840 KB
実行使用メモリ 41,380 KB
最終ジャッジ日時 2024-07-18 02:03:59
合計ジャッジ時間 7,269 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
39,952 KB
testcase_01 AC 135 ms
40,904 KB
testcase_02 AC 132 ms
41,300 KB
testcase_03 AC 129 ms
40,960 KB
testcase_04 AC 131 ms
41,084 KB
testcase_05 AC 133 ms
41,128 KB
testcase_06 AC 132 ms
41,280 KB
testcase_07 AC 133 ms
40,988 KB
testcase_08 AC 120 ms
40,388 KB
testcase_09 AC 134 ms
40,820 KB
testcase_10 AC 136 ms
41,340 KB
testcase_11 AC 134 ms
41,380 KB
testcase_12 AC 129 ms
41,072 KB
testcase_13 AC 131 ms
41,220 KB
testcase_14 AC 133 ms
40,952 KB
testcase_15 AC 135 ms
40,956 KB
testcase_16 AC 133 ms
41,140 KB
testcase_17 AC 125 ms
39,920 KB
testcase_18 AC 138 ms
41,084 KB
testcase_19 AC 125 ms
40,220 KB
testcase_20 AC 139 ms
41,312 KB
testcase_21 AC 137 ms
41,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No0224 {
    
    static final Scanner in = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        int n = in.nextInt();
        String s = in.next();
        String t = in.next();
        int cnt = 0;
        for (int i=0; i<n; i++) {
        	if (s.charAt(i) != t.charAt(i)) cnt++;
        }
        out.println(cnt);
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        in.close();
        out.close();
    }

    static void trace(Object... o) { System.out.println(Arrays.deepToString(o));}
}
0