본문 바로가기
Algorithm

[구현] 백준 11549 Identifying tea - Python

by jangThang 2022. 2. 25.
반응형

백준 온라인 저지

 

[ Contents ]

     

     

    1. 문제 (링크 참조)

     

    11549번: Identifying tea

    The first line contains an integer T representing the tea type (1 ≤ T ≤ 4). The second line contains five integers A, B, C, D and E, indicating the answer given by each contestant (1 ≤ A, B, C, D, E ≤ 4).

    www.acmicpc.net

     

     

     

    2. 문제 풀이

     5명의 참가자 중 정답을 맞춘 사람의 수를 출력하는 문제입니다.

     

    2022.01.19 - [Algorithm] - [Algorithm] 단골 1번 문제, 구현 / 수학

     

    [Algorithm] 단골 1번 문제, 구현 / 수학

    [ Contents ] 1. 구현  단순히 '구현'만 하면 되는 문제 유형입니다. 문제를 이해하고 입력에 맞춰 적절한 출력만 하면 됩니다. 특별한 알고리즘이나 프로그래밍적 기법 없이, 단순 제어문만 사용하

    star7sss.tistory.com

     

     

     

    3. 코드

    T = int(input())
    A, B, C, D, E = map(int, input().split())
    
    res = 0 #정답을 맞춘 참가자 수
    for i in [A, B, C, D, E]:
        if i == T:
            res += 1
    print(res)

     5명의 참가자의 답을 입력받습니다.

     이후, 정답과 비교하여 맞은 사람만 셉니다.

     

    star가 되고나서 Tistory

    반응형

    댓글