작성일 :

문제 링크

6784번 - Multiple Choice

설명

객관식 시험의 답안과 학생이 제출한 답안을 비교하여, 얼마나 많은 문제를 맞추었는지 계산하는 문제입니다.



Code

[ C# ]

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

      var n = int.Parse(Console.ReadLine()!);
      List<char> studentAns = new List<char>();
      for (int i = 0; i < n; i++)
        studentAns.Add(Console.ReadLine()![0]);

      List<char> correctAns = new List<char>();
      for (int i = 0; i < n; i++)
        correctAns.Add(Console.ReadLine()![0]);

      int cntCorrect = 0;
      for (int i = 0; i < n; i++) {
        if (studentAns[i] == correctAns[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
23
24
25
26
27
#include <bits/stdc++.h>

using namespace std;

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

  int n; cin >> n;
  vector<char> studentAns(n);
  for (int i = 0; i < n; i++)
    cin >> studentAns[i];

  vector<char> correctAns(n);
  for (int i = 0; i < n; i++)
    cin >> correctAns[i];

  int cntCorrect = 0;
  for (int i = 0; i < n; i++) {
    if (studentAns[i] == correctAns[i])
      cntCorrect++;
  }

  cout << cntCorrect << "\n";

  return 0;
}