結果

問題 No.224 文字列変更(easy)
ユーザー teritama_gteritama_g
提出日時 2015-06-16 14:56:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 5,000 ms
コード長 632 bytes
コンパイル時間 2,115 ms
コンパイル使用メモリ 74,220 KB
実行使用メモリ 37,032 KB
最終ジャッジ日時 2024-07-18 02:03:28
合計ジャッジ時間 3,875 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,704 KB
testcase_01 AC 49 ms
36,836 KB
testcase_02 AC 48 ms
36,624 KB
testcase_03 AC 48 ms
36,800 KB
testcase_04 AC 49 ms
36,736 KB
testcase_05 AC 49 ms
36,348 KB
testcase_06 AC 50 ms
36,948 KB
testcase_07 AC 48 ms
36,768 KB
testcase_08 AC 47 ms
36,824 KB
testcase_09 AC 50 ms
36,512 KB
testcase_10 AC 48 ms
37,008 KB
testcase_11 AC 49 ms
36,612 KB
testcase_12 AC 50 ms
36,844 KB
testcase_13 AC 51 ms
36,860 KB
testcase_14 AC 50 ms
36,784 KB
testcase_15 AC 48 ms
36,892 KB
testcase_16 AC 47 ms
36,652 KB
testcase_17 AC 49 ms
37,032 KB
testcase_18 AC 52 ms
36,668 KB
testcase_19 AC 49 ms
37,012 KB
testcase_20 AC 49 ms
36,480 KB
testcase_21 AC 48 ms
36,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		int N = 0;
		InputStreamReader is = new InputStreamReader(System.in);
        BufferedReader br = new BufferedReader(is);
        String X1 = br.readLine();
       	String X2 = br.readLine();
       	String X3 = br.readLine();
       	int C = Integer.parseInt(X1);
       	char n[] = X2.toCharArray();
       	char m[] = X3.toCharArray();
       	
       	for(int i=0;(C-1)>=i;i++){
       		if(n[i]!=m[i]){
       			N = N + 1;
       		}
       	}
       	System.out.println(N);
	}
}
0