5063 : TGN

서희찬·2021년 8월 2일
0

백준

목록 보기
10/105

문제

코드

test = int(input())
for _ in range(test):
    r,e,c = map(int,input().split())
    inv = e-c
    if inv>r :
        print("advertise")
    elif inv == r :
        print("does not matter")
    else :
        print("do not advertise")

해설

어... 간단...한 문제인데 문제내용이 진짜 맥락어디갔냥

profile
부족한 실력을 엉덩이 힘으로 채워나가는 개발자 서희찬입니다 :)

0개의 댓글