๋ฐ์ํ
์ฝ๋
import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int TC = scan.nextInt();
for(int t=1; t<=TC; t++) {
int N = scan.nextInt();
String str1 = scan.next(); // ๋ฐ๋ผ ์ ์ด์ผํ๋ ๋ฌธ์์ด
String str2 = scan.next(); // ๋ฐ๋ผ ์ ์ ๋ฌธ์
int rightWords = 0; // ์ฌ๋ฐ๋ฅด๊ฒ ์ ์ ๋ฌธ์ ๊ฐฏ์
for(int i=0; i<str1.length(); i++) {
rightWords += (str1.charAt(i) == str2.charAt(i)) ? 1 : 0;
}
System.out.println("#" + t + " " + rightWords);
}
scan.close();
}
}
ํ์ด
ํ ์คํธ์ผ์ด์ค ์๋งํผ ๋ฌธ์์ด 2๊ฐ๋ฅผ ์ ๋ ฅ๋ฐ๊ณ , ๋ ๋ฌธ์์ด์ด ๊ฐ์ผ๋ฉด ๊ฐฏ์๋ฅผ +1์ฉ ํด์ฃผ๋ฉด ๋
N์ ์ฌ์ฉ๋์ง๋ ์๋๋ค.
๋ฐ์ํ
'Algorithm' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[SW Expert Academy] - (D3)5515. 2016๋ ์์ผ ๋ง์ถ๊ธฐ (0) | 2020.05.27 |
---|---|
[SW Expert Academy] - (D3)8500. ๊ทน์ฅ ์ข์ (0) | 2020.05.26 |
[SW Expert Academy] - (D3)4751. ๋ค์์ด์ ๋ค์ด์๋ชฌ๋ ์ฅ์ (0) | 2020.05.25 |
[๋ฐฑ์ค] 12790๋ฒ: Mini Fantasy War(๊ตฌํ) (0) | 2020.05.24 |
[๋ฐฑ์ค] 10409๋ฒ: ์๋ฒ (0) | 2020.05.20 |
๋๊ธ