結果

問題 No.224 文字列変更(easy)
ユーザー cande398cande398
提出日時 2017-10-16 00:38:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 383 bytes
コンパイル時間 1,722 ms
コンパイル使用メモリ 74,468 KB
実行使用メモリ 41,480 KB
最終ジャッジ日時 2024-07-18 02:27:15
合計ジャッジ時間 5,011 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
39,924 KB
testcase_01 AC 109 ms
41,132 KB
testcase_02 AC 110 ms
39,868 KB
testcase_03 AC 118 ms
39,860 KB
testcase_04 AC 121 ms
41,416 KB
testcase_05 AC 110 ms
41,048 KB
testcase_06 AC 109 ms
40,960 KB
testcase_07 AC 114 ms
41,116 KB
testcase_08 AC 106 ms
39,652 KB
testcase_09 AC 116 ms
40,200 KB
testcase_10 AC 118 ms
41,480 KB
testcase_11 AC 129 ms
41,048 KB
testcase_12 AC 123 ms
41,264 KB
testcase_13 AC 117 ms
39,796 KB
testcase_14 AC 102 ms
41,388 KB
testcase_15 AC 98 ms
40,796 KB
testcase_16 AC 114 ms
39,868 KB
testcase_17 AC 113 ms
41,272 KB
testcase_18 AC 113 ms
39,800 KB
testcase_19 AC 121 ms
40,172 KB
testcase_20 AC 104 ms
41,352 KB
testcase_21 AC 115 ms
41,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int num = sc.nextInt();
        int cou=0;
        String str1 = sc.next();
        String str2 = sc.next();
        for(int i=0;i<num;i++){
            if(str1.charAt(i) != str2.charAt(i))cou++;
        }
        System.out.println(cou);
    }
}
0