結果

問題 No.224 文字列変更(easy)
ユーザー FVRChanFVRChan
提出日時 2017-10-03 09:24:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 370 bytes
コンパイル時間 1,708 ms
コンパイル使用メモリ 74,644 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-07-18 02:27:03
合計ジャッジ時間 4,872 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
52,904 KB
testcase_01 AC 110 ms
53,860 KB
testcase_02 AC 108 ms
54,240 KB
testcase_03 AC 106 ms
53,900 KB
testcase_04 AC 104 ms
54,352 KB
testcase_05 AC 106 ms
53,936 KB
testcase_06 AC 109 ms
53,928 KB
testcase_07 AC 103 ms
53,976 KB
testcase_08 AC 97 ms
52,904 KB
testcase_09 AC 95 ms
52,964 KB
testcase_10 AC 119 ms
54,120 KB
testcase_11 AC 103 ms
52,960 KB
testcase_12 AC 112 ms
54,064 KB
testcase_13 AC 113 ms
53,828 KB
testcase_14 AC 112 ms
53,952 KB
testcase_15 AC 115 ms
53,932 KB
testcase_16 AC 112 ms
54,140 KB
testcase_17 AC 121 ms
54,176 KB
testcase_18 AC 118 ms
53,916 KB
testcase_19 AC 117 ms
54,092 KB
testcase_20 AC 122 ms
53,976 KB
testcase_21 AC 123 ms
54,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	private static Scanner sc=new Scanner(System.in);
	public static void main(String args[])throws Exception{
		int n=Integer.parseInt(sc.nextLine());
		char s[]=sc.nextLine().toCharArray(),t[]=sc.nextLine().toCharArray();
		n=0;
		for(int i=0;i<s.length;i++){
			if(s[i] != t[i]){
				n++;
			}
		}System.out.println(n);

	}
}
0