공존’s BLOG
/
Database
/
Resources
/
백준_Python
/
37. 백준_Python [5063] TGN
Search
Share
37. 백준_Python [5063] TGN
5063번: TGN
상근이는 TGN사의 사장이다. TGN은 Teenager Game Network의 약자 같지만, 사실 Temporary Group Name의 약자이다.
count
=
int
(
input
(
)
)
for
_
in
range
(
count
)
:
r
,
e
,
c
=
map
(
int
,
input
(
)
.
split
(
)
)
if
r
<
e
-
c
:
print
(
"advertise"
)
elif
r
==
e
-
c
:
print
(
"does not matter"
)
else
:
print
(
"do not advertise"
)
Python
복사