https://www.acmicpc.net/problem/5063
#Solution
case = int(input())
for _ in range(case):
r, e, c = map(int, input().split())
if r > e - c:
print('do not advertise')
elif r == e - c:
print('does not matter')
else:
print('advertise')
'Programming [Python] > 백준 알고리즘 솔루션' 카테고리의 다른 글
#182 백준 파이썬 [10886] 0 = not cute / 1 = cute (0) | 2019.11.05 |
---|---|
#181 백준 파이썬 [10102] 개표 (0) | 2019.11.05 |
#179 백준 파이썬 [7567] 그릇 (0) | 2019.11.05 |
#178 백준 파이썬 [2476] 주사위 게임 (0) | 2019.11.05 |
#177 백준 파이썬 [2754] 학점계산 (0) | 2019.11.05 |