보안을 그리다, 훈이

[Baekjoon/Python3] 14720번 우유 축제 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 14720번 우유 축제

HooNeee 2020. 12. 8. 16:10

[Baekjoon/Python3] 14720번 우유 축제

 

www.acmicpc.net/problem/14720

 

14720번: 우유 축제

영학이는 딸기우유, 초코우유, 바나나우유를 좋아한다. 입맛이 매우 까다로운 영학이는 자신만의 우유를 마시는 규칙이 있다. 맨 처음에는 딸기우유를 한 팩 마신다. 딸기우유를 한 팩 마신 후

www.acmicpc.net

 

n = int(input())
store = list(map(int, input().split()))
cnt = 0
for i in range(n):
    if store[i] == cnt % 3:
        cnt += 1
print(cnt)

 

n = int(input())
store = list(map(int, input().split()))
i, cnt = 0, 0
for s in store:
    if s == i:
        cnt += 1
        if i == 2:
            i = 0
        else:
            i += 1
print(cnt)
Comments