Canadian Computing Competition: 2011 Stage 1, Senior #2
Your teacher likes to give multiple choice tests. One benefit of giving these tests is that they are easy to mark, given an answer key. The other benefit is that students believe they have a one-in-five chance of getting the correct answer, assuming the multiple choice possibilities are A
, B
, C
, D
or E
.
Write a program that your teacher can use to grade one multiple choice test.
Input Specification
The input will contain the number
followed by
lines. The
lines are composed of
lines of student responses (with one of
A
, B
, C
, D
or E
on each line), followed by lines of correct answers (with one of
A
, B
, C
, D
or E
on each line), in the same order as the student answered the questions (that is, if line is the student response, then line
will contain the correct answer to that question).
Output Specification
Output the integer
which corresponds to the number of questions the student answered correctly.
Sample Input 1
3
A
B
C
A
C
B
Output for Sample Input 1
1
Sample Input 2
3
A
A
A
A
B
A
Output for Sample Input 2
2
Comments
Why are problems in this website written so terribly? This one in particular made me want to tear my hair out. Unreal...
This comment is hidden due to too much negative feedback. Show it anyway.
people will copy paste it and get free points
I do not understand why I am getting an IndexError when I run this in the solution. It works just fine in VSCode
Don't post your solution here