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


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

[ 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, ..


원문링크 : [구현/수학] 백준 4562 No Brainer - 파이썬(Python)