Recent Posts
Notice
No Rules Rules
Dyslexia (feat. 백준, 8371번) 본문
728x90
반응형
Dyslexia
https://www.acmicpc.net/problem/8371
반응형
// 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 << ans;
return 0;
}
// *&)*@*
입력된 두 문자열에 대해서 각각의 동일한 인덱스의 문자가 서로 다른 개수를 출력하는 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
암호제작 (feat. 백준, 1837번) (0) | 2022.09.08 |
---|---|
Dyslexia (feat. 백준, 8387번) (0) | 2022.09.08 |
Speed Limit (feat. 백준, 4635번) (0) | 2022.09.08 |
Speed Limit (feat. 백준, 14541번) (0) | 2022.09.08 |
Ship Selection (feat. 백준, 10180번) (0) | 2022.09.08 |
Comments