반응형
문제
https://www.acmicpc.net/problem/14720
풀이 (Python)
n = int(input())
m = list(map(int, input().split()))
num = 0
for i in range(n):
if (m[i] == num%3):
num+=1
print(num)
반응형
'개발 공부 > 백준 알고리즘' 카테고리의 다른 글
[백준] 5597 - 과제 안 내신 분..? (Python) (0) | 2022.07.19 |
---|---|
[백준] 1264 - 모음의 개수 (python) (0) | 2022.07.19 |
[백준] 5622번 - 다이얼 (Python) (0) | 2022.07.19 |