시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 1024 MB58474381.132%

문제

Your friend and you took a true/false exam of n questions. You know your answers, your friend's answers, and that your friend got k questions correct.

Compute the maximum number of questions you could have gotten correct.

입력

The first line of input will contain a single integer m that indicates the number datasets to follow. Each dataset begins with a single integer k. The second line in the dataset contains a string of n (1 ≤ n ≤ 1000) characters, the answers you wrote down. Each letter is either a ‘T’ or an ‘F’. The third line in the dataset contains a string of n characters, the answers your friend wrote down. Each letter is either a ‘T’ or an ‘F’. The input will satisfy 0 ≤ k ≤ n.

출력

For each dataset print, on one line, the maximum number of questions you could have gotten correct.

예제 입력 1

2
3
FTFFF
TFTTT
6
TTFTFFTFTF
TTTTFFTTTT

예제 출력 1

2
9