문제 링크: https://www.acmicpc.net/problem/9296
각 케이스마다 학생이 제출한 답안, 그리고 정답이 주어집니다. 틀린 문제 개수를 출력하면 됩니다. 쉽습니다
#include <bits/stdc++.h>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr), cout.tie(nullptr);
int n;
cin >> n;
for (int i = 1; i <= n; ++i) {
string paper, ans;
int len;
cin >> len >> paper >> ans;
int wrong = 0;
for (int j = 0; j < len; ++j)
if (paper[j] != ans[j])
++wrong;
cout << "Case " << i << ": " << wrong << '\n';
}
return 0;
}
반응형
'Online Judge > 백준' 카테고리의 다른 글
[백준][C++] 3300: 무어 기계 (0) | 2020.08.28 |
---|---|
[백준][C++] 7595: Triangles (0) | 2020.08.27 |
[백준][C++] 6965: Censor (0) | 2020.08.25 |
[백준][C++] 14720: 우유 축제 (0) | 2020.08.24 |
[백준][C++] 5014: 스타트링크 (0) | 2020.08.23 |