본문 바로가기
Algorithm

[구현/수학] 백준 4562 No Brainer - 파이썬(Python)

by jangThang 2023. 1. 31.
반응형

백준 온라인 저지

 

[ Contents ]

     

     

    1. 문제 (링크 참조)

     

    4562번: No Brainer

    For each data set, there will be exactly one line of output. This line will be "MMM BRAINS" if the number of brains the zombie eats is greater than or equal to the number of brains the zombie requires to stay alive. Otherwise, the line will be "NO BRAINS".

    www.acmicpc.net

     

     

     

    2. 문제 풀이

     단순 비교 문제입니다.

     

     

    3. 코드

    t = int(input())
    
    for _ in range(t):
        n, m = map(int, input().split())
    
        if n < m:
            print("NO BRAINS")
        else:
            print("MMM BRAINS")

     n은 현재 뇌의 수, m은 필요한 뇌의 수입니다.

     필요한 뇌의 수(m)가 더 크면, "NO BRAINS"를 출력하고, 그 반대면 "MMM BRAINS"를 출력합니다.

     

    star가 되고나서 Tistory

    반응형

    댓글