공존’s BLOG
/
Database
/
Resources
/
백준_Python
/
47. 백준_Python [10103] 주사위 게임
Search
Share
47. 백준_Python [10103] 주사위 게임
10103번: 주사위 게임
창영이와 상덕이는 게임을 하고 있다.
count
=
int
(
input
(
)
)
A_tot
=
100
B_tot
=
100
for
_
in
range
(
count
)
:
A
,
B
=
map
(
int
,
input
(
)
.
split
(
)
)
if
A
==
B
:
pass
elif
A
>
B
:
B_tot
-=
A
elif
B
>
A
:
A_tot
-=
B
print
(
A_tot
)
print
(
B_tot
)
Python
복사