728x90
반응형
단순 사칙연산 문제이다.
for _ in range(int(input())):
r, e, c = map(int, input().split())
if r == e-c:
print("does not matter")
elif r < e-c:
print("advertise")
else:
print("do not advertise")
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 5074번 When Do We Finish?(python) (0) | 2021.02.14 |
---|---|
백준 알고리즘 5073번 삼각형과 세 변(python) (0) | 2021.02.14 |
백준 알고리즘 5043번 정말 좋은 압축(python) (0) | 2021.02.14 |
백준 알고리즘 4922번 Walk Like an Egyptian(python) (0) | 2021.02.13 |
백준 알고리즘 4909번 Judging Olympia(python) (0) | 2021.02.13 |