-Code
n = int(input())
weather = list(map(int, input().split()))
now, res = 0, 0
for el in weather:
if el == 1:
now += 1
else:
now -= 1
res += now
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 32068번 보물 찾기 (0) | 2024.11.13 |
---|---|
[백준/파이썬] 32651번 인간은 무엇인가 (0) | 2024.11.12 |
[백준/파이썬] 29965번 Average scores (0) | 2024.11.10 |
[백준/파이썬] 32529번 래환이의 여자친구 사귀기 대작전 (1) | 2024.11.09 |
[백준/파이썬] 24303번 ПРЪЧКИ (0) | 2024.11.08 |