[백준/Python] 5063 - TGN

orangesnail·2025년 3월 3일

백준

목록 보기
46/169

https://www.acmicpc.net/problem/5063

n = int(input())

for _ in range(n):
    r, e, c = map(int, input().split())

    if e - c > r:
        print("advertise")
    elif e - c == r:
        print("does not matter")
    else:
        print("do not advertise")
profile
초보입니다. 피드백 환영합니다 😗

0개의 댓글