작성일 :

문제 링크

8387번 - Dyslexia

설명

원본 문자열과 학생이 다시 쓴 문자열이 주어졌을 때,

학생이 다시 쓴 문자열에서 올바르게 받아 쓴 문자의 개수를 출력하는 문제입니다.


Code

[ C# ]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Solution {
  class Program {
    static void Main(string[] args) {

      var n = int.Parse(Console.ReadLine()!);
      var txtOriginal = Console.ReadLine()!;
      var txtRewritten = Console.ReadLine()!;

      int cntCorrect = 0;
      for (int i = 0; i < n; i++)
        if (txtOriginal[i] == txtRewritten[i])
          cntCorrect++;

      Console.WriteLine(cntCorrect);

    }
  }
}



[ C++ ]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <bits/stdc++.h>

using namespace std;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  int n; cin >> n;

  string txtOriginal, txtRewritten;
  cin >> txtOriginal >> txtRewritten;

  int cntCorrect = 0;
  for (int i = 0; i < n; i++)
    if (txtOriginal[i] == txtRewritten[i])
      cntCorrect++;

  cout << cntCorrect << "\n";

  return 0;
}