본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 6784번 Multiple Choice

by 현장 2022. 11. 6.

-Code

t = int(input())
studnet_answer = [input() for _ in range(t)]
cnt = 0
for i in range(t):
    test_answer = input()
    if studnet_answer[i] == test_answer or test_answer == '_':
        cnt += 1
print(cnt)