-Code
m = int(input())
sequence = list(map(int, input().split()))
res = []
pointer, cnt = 0, 0
for n in sequence:
if pointer != n:
pointer = n
cnt = 1
if cnt == pointer:
res.append(n)
pointer, cnt = 0, 0
if pointer == n:
cnt += 1
print(*res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 7120번 String (0) | 2023.06.18 |
---|---|
[백준/파이썬] 19604번 Art (0) | 2023.06.17 |
[백준/파이썬] 15234번 Number Pairs (0) | 2023.06.15 |
[백준/파이썬] 20977번 JOI ソート (JOI Sort) (0) | 2023.06.14 |
[백준/파이썬] 9947번 Coin tossing (0) | 2023.06.13 |