Recent Posts
Notice
No Rules Rules
Dyslexia (feat. 백준, 8387번) 본문
728x90
반응형
Dyslexia
https://www.acmicpc.net/problem/8387
반응형
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
register int N, ans = 0;
char arr1[100001], arr2[100001];
cin >> N;
cin >> arr1 >> arr2;
for(register int n = 0; n < N; ++n)
if(arr1[n] != arr2[n])
++ans;
cout << N - ans;
return 0;
}
// *&)*@*
아래 "Dyslexia"와 동일한 문제입니다. 다만 맞는 문자의 개수를 출력해야 한다는 결과만 다릅니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
괄호 추가하기 (feat. 백준, 16637번) (0) | 2022.09.08 |
---|---|
암호제작 (feat. 백준, 1837번) (0) | 2022.09.08 |
Dyslexia (feat. 백준, 8371번) (0) | 2022.09.08 |
Speed Limit (feat. 백준, 4635번) (0) | 2022.09.08 |
Speed Limit (feat. 백준, 14541번) (0) | 2022.09.08 |
Comments