보안을 그리다, 훈이

[Baekjoon/Python3] 7567번 그릇 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 7567번 그릇

HooNeee 2020. 12. 5. 21:58

[Baekjoon/Python3] 7567번 그릇

 

www.acmicpc.net/problem/7567

 

7567번: 그릇

그릇을 바닥에 놓았을 때 그 높이는 10cm 이다. 그런데 두 개의 그릇을 같은 방향으로 포개면 그 높이는 5cm만 증가된다. 만일 그릇이 서로 반대방향으로 쌓이면 높이는 그릇만큼, 즉 10cm 늘어난다.

www.acmicpc.net

 

dish = input()
height = 10
for i in range(1, len(dish)):
    if dish[i] == dish[i - 1]:
        height += 5
    else:
        height += 10
print(height)
Comments