백준 9584번: Fraud Busters

danbibibi·2021년 10월 1일
0

문제

문제 바로가기> 백준 9584번: Fraud Busters

풀이

간단한 구현이다.

def solution():
    import sys
    input = sys.stdin.readline
    code = input()
    N = int(input())
    ans = []
    for i in range(N):
        tmp = input().rstrip()
        is_ok=True
        for j in range(len(tmp)):
            if code[j]!='*' and code[j]!=tmp[j]:
                is_ok = not is_ok
                break
        if is_ok:
            ans.append(tmp)
    print(len(ans))
    for i in ans: print(i)
solution()
profile
블로그 이전) https://danbibibi.tistory.com

0개의 댓글

관련 채용 정보