-Code
res = 0
while True:
try:
s, x = input().split()
x = int(x)
if s == "Es":
res += 21 * x
else:
res += 17 * x
except EOFError:
break
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 16019번 Are we there yet? (0) | 2023.05.24 |
---|---|
[백준/파이썬] 27880번 ピアノコンクール (Piano Competition) (0) | 2023.05.23 |
[백준/파이썬] 15122번 Forbidden Zero (0) | 2023.05.21 |
[백준/파이썬] 10471번 공간을 만들어 봅시다 (0) | 2023.05.20 |
[백준/파이썬] 25576번 찾았다 악질 (1) | 2023.05.19 |