[JAVA] SWEA 9317- 석찬이의 받아쓰기

hyng·2022년 3월 14일
0

SWEA

목록 보기
51/78

import java.util.*;
class Solution
{
	public static void main(String args[]) throws Exception
	{
		Scanner sc = new Scanner(System.in);
        StringBuffer sb = new StringBuffer();


        int T = Integer.parseInt(sc.nextLine());
        for (int tc = 1; tc <= T; tc++) {
            sb.append("#").append(tc).append(" ");

            int N = Integer.parseInt(sc.nextLine());

            String ans = sc.nextLine();
            String input = sc.nextLine();

            int correctCount = 0;
            for(int i=0; i<N; i++){
                if(ans.charAt(i) == input.charAt(i))
                    correctCount++;
            }
            sb.append(correctCount).append("\n");
        }
        System.out.println(sb);
    }
}
profile
공부하고 알게 된 내용을 기록하는 블로그

0개의 댓글