honey_pot
[python] 백준 5063번 본문
n = int(input())
for _ in range(n):
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")
'문제 풀이' 카테고리의 다른 글
[python] 백준 10886번 (0) | 2021.06.08 |
---|---|
[python] 백준 10102번 (0) | 2021.06.08 |
[python] 백준 7567번 (0) | 2021.06.08 |
[python] 백준 10988번 (0) | 2021.06.08 |
[python] 백준 5086번 (0) | 2021.06.08 |
Comments